npm install
npm run serve
npm run build
npm run test
npm run lint
Theme customization: cd node_modules\onsenui\css-components-src open gulpfile.js Uncomment In the 95 line and 68 line.
// .pipe(plumber()) // this was causing the task to never complete with gulp 4, but why...?
.pipe(postcss(plugins))
// .pipe(gulp.dest('./build/'))
.pipe(gulp.dest(prefix))
.pipe(browserSync.stream());
to
// .pipe(plumber()) // this was causing the task to never complete with gulp 4, but why...?
.pipe(postcss(plugins))
.pipe(gulp.dest('./build/'))
.pipe(gulp.dest(prefix))
.pipe(browserSync.stream());
exec
yarn run serve
or
npm run serve