Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
closes #133: update project dev deps, major:main-bower-files, gulp-au…
Browse files Browse the repository at this point in the history
…toprefixer, disable sourcemaps because of "unknown word" issue
  • Loading branch information
Jonathan Grupp committed Feb 26, 2015
1 parent 95ecf54 commit 502cb93
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -4,7 +4,6 @@
[![Coverage Status](http://img.shields.io/coveralls/mwaylabs/generator-m.svg?style=flat-square)][coveralls-url]
[![Build Status](https://img.shields.io/travis/mwaylabs/generator-m.svg?style=flat-square)][travis-url]
[![Dependency Status](http://img.shields.io/david/mwaylabs/generator-m.svg?style=flat-square)][daviddm-url]
[![Dependency Status](http://img.shields.io/david/dev/mwaylabs/generator-m.svg?style=flat-square)][daviddm-url]
[![Download Month](http://img.shields.io/npm/dm/generator-m.svg?style=flat-square)][npm-url]

[npm-url]: https://npmjs.org/package/generator-m
Expand Down
26 changes: 13 additions & 13 deletions app/templates/_package.json
Expand Up @@ -5,40 +5,40 @@
},
"devDependencies": {
"connect": "^3.3.4",
"connect-livereload": "^0.5.2",
"connect-livereload": "^0.5.3",
"cordova": "4.2.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-angular-filesort": "^1.0.4",
"gulp-autoprefixer": "^1.0.1",
"gulp": "^3.8.11",
"gulp-angular-filesort": "^1.1.1",
"gulp-autoprefixer": "^2.1.0",
"gulp-csso": "^1.0.0",
"gulp-filter": "^2.0.2",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.2.1",
"gulp-inject": "^1.1.1",
"gulp-inject": "^1.2.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-jshint": "^1.9.2",
"gulp-jsonlint": "^1.0.2",
"gulp-livereload": "^3.2.0",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^0.8.0",
"gulp-minify-html": "^1.0.0",
"gulp-natural-sort": "^0.1.0",
"gulp-ng-annotate": "^0.5.2",
"gulp-plumber": "^0.6.6",
"gulp-ruby-sass": "^0.7.1",
"gulp-shell": "^0.2.11",
"gulp-size": "^1.2.0",
"gulp-shell": "^0.3.0",
"gulp-size": "^1.2.1",
"gulp-uglify": "^1.1.0",
"gulp-useref": "^1.1.1",
"jshint-stylish": "^1.0.0",
"main-bower-files": "^2.4.1",
"jshint-stylish": "^1.0.1",
"main-bower-files": "^2.5.0",
"minimist": "^1.1.0",
"opn": "^1.0.1",
"require-dir": "^0.1.0",
"rimraf": "^2.2.8",
"serve-static": "^1.8.0",
"serve-static": "^1.9.1",
"vinyl-paths": "^1.0.0",
"wiredep": "^2.2.2",
"xml2js": "^0.4.4"
"xml2js": "^0.4.5"
}
}
5 changes: 4 additions & 1 deletion app/templates/gulp_tasks/injecting.js
Expand Up @@ -40,7 +40,10 @@ gulp.task('styles', function () {
.pipe($.plumber())
.pipe($.rubySass({
style: 'expanded',
precision: 10
precision: 10,
'sourcemap=none': true // disable sourcemap to avoid unkown word error
// issue (should be fixed when 1.0.0 is stable: https://github.com/sindresorhus/gulp-autoprefixer/issues/20
// solution: http://stackoverflow.com/questions/26979433/gulp-with-gulp-ruby-sass-error-style-css-map31-unknown-word
}))
.pipe($.autoprefixer({ browsers: ['last 2 version'], remove: false}))
.pipe(gulp.dest('.tmp/'));
Expand Down

0 comments on commit 502cb93

Please sign in to comment.