A Rollup CLI for create template with developing plugins.
- TypeScirpt/Babel 7.0
- TS-lint/ES-lint
- server-hot
- postcss
- ?jest
$ npm install plugin-cli -g
or
$ yarn global add plugin-cli
You can select preset which you need. and replace '-' in project name with Camel-Case when it exists.
$ plugin apps
It will create a directory called apps
inside the current folder.
and generate the initial project structure.
apps
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── build
│ ├── name.js
│ ├── plugins.js
│ ├── config.base.js
│ ├── config.build.js
│ └── config.env.js
├── public
│ ├── favicon.ico
│ └── index.html
└── src
└── index.js
serve with hot reload at localhost:10001
build your project with minification.
Runs the jest test runner on your tests.