one-start
v0.6.1
Published
start or build js project with only one command
Readme
One Start
Install
npm install --save-dev one-start
# or
yarn add -D one-start
# or
pnpm add -D one-startAdd config file
create file one-start.config.js in project root directory
const createConfig = require('one-start/createConfig')
module.exports = createConfig({
...
})Add script
{
"scripts": {
"start": "one-start"
}
}