1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00

css scripts, js scripts, remove gulp

This commit is contained in:
chomik
2019-04-27 14:33:46 +02:00
parent 880ff15961
commit f91c290400
571 changed files with 384 additions and 798 deletions

19
build/browsersync.js Executable file
View File

@@ -0,0 +1,19 @@
const bs = require('browser-sync').create();
bs.init({
watch: true,
server: {
routes: {
"/": "tmp",
"/dist": "dist",
"/libs": "static/libs",
"/img": "static/img",
}
},
files: ["tmp/**/*", "dist/css/*.css", "dist/js/*.js"],
watchOptions: {
ignoreInitial: true
},
notify: false
});