diff --git a/build.dev.js b/build.dev.js index b5b2e60..c5c4d0b 100644 --- a/build.dev.js +++ b/build.dev.js @@ -28,7 +28,6 @@ const jsOpt = { ] } const cssOpt = { - // includePaths: ['src/css/'], outputStyle: 'compressed' } @@ -62,7 +61,6 @@ const compileCss = (entry, output) => { chokidar .watch(sourceDir) .on('all', (act, file) => { - return if (act === 'add' || act === 'change') { let entry = file let output = file.replace('src/', 'dist/') diff --git a/build.next.js b/build.next.js index 5f6ddee..9ef4b86 100644 --- a/build.next.js +++ b/build.next.js @@ -12,7 +12,6 @@ const sourceDir = path.resolve(__dirname, 'src') const buildDir = path.resolve(__dirname, 'dist') const cssOpt = { - // includePaths: ['src/css/'], outputStyle: 'compressed' } diff --git a/build.prod.js b/build.prod.js index e1516b6..0e77e8e 100644 --- a/build.prod.js +++ b/build.prod.js @@ -28,7 +28,6 @@ const jsOpt = { ] } const cssOpt = { - // includePaths: ['src/css/'], outputStyle: 'compressed' } diff --git a/index.js b/index.js index 3d89ea8..ebaa41c 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,4 @@ * @date 2017-12-23 14:47:32 * @version $Id$ */ -export Anot from 'src/js/anot' -export AnotTouch from 'src/js/anot-touch' -export Pages from 'src/js/lib/pages'