Use node.js for browser-based CI

This commit is contained in:
wood
2019-03-13 21:25:40 -07:00
committed by Gregg Van Hove
parent f5663a9076
commit 828d14f48e
12 changed files with 275 additions and 35 deletions

View File

@@ -1,11 +0,0 @@
module.exports = {
jasmine: {
options: {
cssDir: 'lib/jasmine-core/',
sassDir: 'src/html',
outputStyle: 'compact',
noLineComments: true,
bundleExec: true
}
}
};

View File

@@ -0,0 +1,7 @@
module.exports = {
dist: {
src: [ "lib/jasmine-core/jasmine.css" ],
dest: "lib/jasmine-core/jasmine.css",
baseDir: "images"
}
};

14
grunt/config/sass.js Normal file
View File

@@ -0,0 +1,14 @@
const sass = require('node-sass');
module.exports = {
options: {
implementation: sass,
outputStyle: 'compact',
sourceComments: false
},
dist: {
files: {
"lib/jasmine-core/jasmine.css": "src/html/jasmine.scss"
}
}
};