svelte-cli

Version, currently master branch1 version
  • master branchlatestJun 3, 2020

github.com/dvinciguerra/svelte-cli

Svelte CLI - Simple experiment made using Crystal lang

2 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  svelte-cli:
    github: dvinciguerra/svelte-cli
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.33.0
License
MIT
Author
Daniel Vinciguerra <daniel.vinciguerra@bivee.com.br>
Target
  • svelte-cli from src/svelte-cli.cr

Dependencies

This version declares no dependencies.

README

# svelte-cli

This is a simple Svelte CLI application made using `crystal-lang`.

## Installation

1. clone this repository

```sh
$ git clone git@github.com:dvinciguerra/svelte-cli.git
```

2. make sure that you have `crystal-lang` compiler and `shards` installed

```sh
$ which crystal # or command -v crystal
$ which shards  # or command -v shards
```

3. compile the application

```sh
$ shards build --production
```

4. run application

```sh
$ ./bin/svelte-cli help
```

## Usage

This cli app is a simple wrapper for `npx degit` and `yarn [scripts]` for now.

In fucture I pretend to deliver a full-fearured standalone tool.

## Contributing

1. Fork it (<https://github.com/dvinciguerra/svelte-cli/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Contributors

- [Daniel Vinciguerra](https://github.com/dvinciguerra) - creator and maintainer