Sha256: 4afa63d77c3043827eb43259af1a4d9c7c168bb6c9ae42abb0ccd2221f198131
Contents?: true
Size: 633 Bytes
Versions: 43
Compression:
Stored size: 633 Bytes
Contents
const concurrently = require('concurrently'); // By default, configure Bridgetown to use port 4001 so Browsersync can use 4000 // See also Browsersync settings in sync.js const port = 4001 ///////////////// // Concurrently ///////////////// concurrently([ { command: "yarn webpack-dev", name: "Webpack", prefixColor: "yellow"}, { command: "sleep 4; yarn serve --port " + port, name: "Bridgetown", prefixColor: "green"}, { command: "sleep 8; yarn sync", name: "Live", prefixColor: "blue"} ], { restartTries: 3, killOthers: ['failure', 'success'], }).then(() => { console.log("Done.");console.log('\033[0G'); }, () => {});
Version data entries
43 entries across 43 versions & 3 rubygems