@epublishing/grunt-epublishing 0.3.2 → 0.3.3
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/package.json +7 -4
- package/tasks/jade.js +8 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epublishing/grunt-epublishing",
|
|
3
3
|
"description": "Automated front-end tasks for ePublishing Jade and client sites.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"homepage": "https://www.epublishing.com",
|
|
6
6
|
"contributors": [
|
|
7
7
|
{
|
|
@@ -11,12 +11,16 @@
|
|
|
11
11
|
{
|
|
12
12
|
"name": "Mike Green",
|
|
13
13
|
"email": "mgreen@epublishing.com"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "Michael Hedges",
|
|
17
|
+
"email": "mhedges@epublishing.com"
|
|
14
18
|
}
|
|
15
19
|
],
|
|
16
20
|
"repository": "bitbucket:epub_dev/grunt-epublishing",
|
|
17
21
|
"license": "MIT",
|
|
18
22
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
23
|
+
"node": ">= 12.22.12"
|
|
20
24
|
},
|
|
21
25
|
"dependencies": {
|
|
22
26
|
"@epublishing/babel-preset-epublishing": "^0.1.8",
|
|
@@ -65,11 +69,10 @@
|
|
|
65
69
|
"jit-grunt": "^0.10.0",
|
|
66
70
|
"listr": "^0.14.1",
|
|
67
71
|
"lodash": "^4.17.10",
|
|
68
|
-
"node-sass": "4.7.2",
|
|
69
72
|
"postcss-css-variables": "^0.9.0",
|
|
70
73
|
"prettyjson": "^1.2.1",
|
|
71
74
|
"read-pkg": "^4.0.1",
|
|
72
|
-
"sass": "^1.
|
|
75
|
+
"sass": "^1.71.1",
|
|
73
76
|
"style-loader": "^0.20.2",
|
|
74
77
|
"susy": "^2.2.14",
|
|
75
78
|
"time-grunt": "^1.4.0",
|
package/tasks/jade.js
CHANGED
|
@@ -14,11 +14,19 @@ 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
|
+
|
|
17
22
|
if (!grunt.option('no-time')) timeGrunt(grunt);
|
|
23
|
+
|
|
18
24
|
jitGrunt(grunt, {
|
|
19
25
|
'install-eslint': '@epublishing/grunt-install-eslint',
|
|
20
26
|
});
|
|
21
27
|
|
|
28
|
+
|
|
29
|
+
|
|
22
30
|
/**
|
|
23
31
|
* This registers a grunt task which shells out and uses bundler to
|
|
24
32
|
* determine the paths to the jade gem and any jade child engine gem
|