https://github.com/foxbunny/cycle-scripts-ls
create-cycle-app flavor w/ LiveScript support
https://github.com/foxbunny/cycle-scripts-ls
create-cycle-app cyclejs flavor livescript
Last synced: 3 months ago
JSON representation
create-cycle-app flavor w/ LiveScript support
- Host: GitHub
- URL: https://github.com/foxbunny/cycle-scripts-ls
- Owner: foxbunny
- License: mit
- Created: 2017-03-11T21:43:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-12T00:06:57.000Z (about 8 years ago)
- Last Synced: 2025-01-26T01:32:40.548Z (5 months ago)
- Topics: create-cycle-app, cyclejs, flavor, livescript
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cycle-scripts-ls
[Cycle-app](https://github.com/cyclejs-community/create-cycle-app) LiveScript flavor.
## Language
[LiveScript](http://livescript.net/) 1.5.0
Also includes CSS support with [postcss](https://github.com/postcss/postcss) and [autoprefixer](https://github.com/postcss/autoprefixer).
## Bundler
Webpack configured with
* [Webpack dev server](https://webpack.github.io/docs/webpack-dev-server.html)
* [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement-with-webpack.html)## Scripts
- `npm start`: Start development server listening on port 8000
- `npm test`: Run the default test tool
- `npm run build`: Generate a production-ready build content, on the `build` folder (this folder is *gitignored*)
- `npm run eject`: Copy flavor's dependencies and configurations to the project folder, update `package.json` and remove the dependency on the flavored `cycle-scripts-ls`. This is irreversible.## Boilerplate:
The flavor generate the following file structure:
```
my-awesome-cycle-app/
├── node_modules/
├── public/
│ ├── favicon.ico
│ └── index.html
├── src/
│ ├── app.ls
│ ├── app.test.ls
│ └── index.ls
└── package.json
└── postcss.config.js
```