@epublishing/grunt-epublishing 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configure-sass.js +6 -5
- package/package.json +1 -1
- package/tasks/jade.js +0 -8
package/lib/configure-sass.js
CHANGED
|
@@ -9,11 +9,12 @@ const NODE_ENV = process.env.NODE_ENV || 'development';
|
|
|
9
9
|
|
|
10
10
|
module.exports = function configureSass(config) {
|
|
11
11
|
|
|
12
|
-
config.sass.options.implementation = sass;
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
return {
|
|
14
|
+
sass: {
|
|
15
|
+
options: {
|
|
16
|
+
implementation: sass,
|
|
17
|
+
}
|
|
18
|
+
}
|
|
16
19
|
};
|
|
17
|
-
|
|
18
|
-
return config;
|
|
19
20
|
};
|
package/package.json
CHANGED
package/tasks/jade.js
CHANGED
|
@@ -14,19 +14,11 @@ const initJadeConfig = require('../lib/init-jade-config');
|
|
|
14
14
|
module.exports = function(grunt) {
|
|
15
15
|
grunt.option('siteRoot', process.cwd())
|
|
16
16
|
|
|
17
|
-
console.log('~~~~~~~~~~~~~~~~~~~~')
|
|
18
|
-
console.log('~~~~~~~DEBUG~~~~~~~~')
|
|
19
|
-
console.log('~~~~~~~~~~~~~~~~~~~~')
|
|
20
|
-
|
|
21
|
-
|
|
22
17
|
if (!grunt.option('no-time')) timeGrunt(grunt);
|
|
23
|
-
|
|
24
18
|
jitGrunt(grunt, {
|
|
25
19
|
'install-eslint': '@epublishing/grunt-install-eslint',
|
|
26
20
|
});
|
|
27
21
|
|
|
28
|
-
|
|
29
|
-
|
|
30
22
|
/**
|
|
31
23
|
* This registers a grunt task which shells out and uses bundler to
|
|
32
24
|
* determine the paths to the jade gem and any jade child engine gem
|