1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

build fix

This commit is contained in:
codecalm
2019-09-08 23:31:20 +02:00
parent b7b1bb5dd7
commit a38dfb1678
2 changed files with 1 additions and 3 deletions

View File

@@ -6,8 +6,6 @@ const path = require('path'),
sass = require("node-sass"); sass = require("node-sass");
glob("scss/tabler*.scss", {}, function (er, files) { glob("scss/tabler*.scss", {}, function (er, files) {
console.log('files', files);
files.forEach(function(file){ files.forEach(function(file){
var basename = path.basename(file, '.scss'); var basename = path.basename(file, '.scss');

View File

@@ -22,7 +22,7 @@
"watch": "npm-run-all --parallel watch-*", "watch": "npm-run-all --parallel watch-*",
"watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"", "watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
"watch-js": "nodemon --watch js/ --ext js --exec \"npm run js-compile-standalone\"", "watch-js": "nodemon --watch js/ --ext js --exec \"npm run js-compile-standalone\"",
"js": "npm-run-all js-compile js-minify", "js": "npm-run-all js-compile",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/", "js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/",
"js-compile": "npm-run-all --sequential js-compile-*", "js-compile": "npm-run-all --sequential js-compile-*",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap", "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",