create-cycle-app LiveScript flavor
npm install cycle-scripts-lsCycle-app LiveScript flavor.
LiveScript 1.5.0
Also includes CSS support with postcss and autoprefixer.
Webpack configured with
* Webpack dev server
* Hot Module Replacement
- 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.
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