Skip to content

Commit

Permalink
#727 checkpoint - added specific import order for less vs sass, norma…
Browse files Browse the repository at this point in the history
…lized more variables.
  • Loading branch information
rosskevin committed Nov 21, 2015
1 parent f64ff8a commit b05c95b
Show file tree
Hide file tree
Showing 49 changed files with 2,753 additions and 915 deletions.
16 changes: 8 additions & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = function (grunt) {
files: [{
expand: true,
cwd: "less",
src: ["*.less", "!_mixins.less", "!_mixins-fullpalette.less", "!_mixins-shared.less"],
src: ["*.less", "!_mixins.less", "!_mixins-fullpalette.less", "!_mixins-shared.less", "!_import-bs*"],
ext: ".scss",
dest: "sass"
}],
Expand Down Expand Up @@ -471,9 +471,9 @@ module.exports = function (grunt) {
},
src: ['Gruntfile.js', 'package.js']
},
core: [
"scripts/**/*.js",
],
core: {
src: ["scripts/**/*.js"]
},
test: {
src: ["test/**/*.js"]
},
Expand Down Expand Up @@ -511,10 +511,10 @@ module.exports = function (grunt) {
files: ["index.html", "bootstrap-elements.html", "test.html"],
tasks: ["htmllint", "bootlint"]
},
src: {
files: '<%= jshint.core.src %>',
tasks: ['jshint:core', 'dist-js'] // add tests when working again
},
//src: {
// files: '<%= jshint.core.src %>',
// tasks: ['jshint:core', 'dist-js'] // add tests when working again
//},
test: {
files: ["test/**/*.js"],
tasks: ["jshint:test", "jasmine"]
Expand Down
Loading

0 comments on commit b05c95b

Please sign in to comment.