Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 31078e1

Browse files
committed
chore(): cleanup dependencies
Package Current Wanted Latest Location --------------------------------------------------------------------------------- - [X] angularytics 0.3.0 0.3.0 0.4.0 angular-material-source - [ ] conventional-changelog 0.0.17 git git angular-material-source - [-] esprima 1.2.5 1.2.5 2.7.2 angular-material-source - [X] gulp-autoprefixer 1.0.1 1.0.1 3.1.0 angular-material-source - [X] gulp-connect 2.3.1 2.3.1 4.1.0 angular-material-source - [X] gulp-filter 1.0.2 1.0.2 4.0.0 angular-material-source - [X] gulp-if 1.2.5 1.2.5 2.0.1 angular-material-source - [X] gulp-insert 0.4.0 0.4.0 0.5.0 angular-material-source - [X] gulp-jshint 1.12.0 1.12.0 2.0.1 angular-material-source - [X] gulp-ng-annotate 0.5.3 0.5.3 2.0.0 angular-material-source - [X] gulp-ng-html2js 0.1.8 0.1.8 0.2.2 angular-material-source - [X] jquery 2.2.4 2.2.4 3.0.0 angular-material-source - [X] jshint-summary 0.3.0 0.3.0 0.4.0 angular-material-source - [X] karma 0.13.22 0.13.22 1.0.0 angular-material-source - [X] karma-firefox-launcher 0.1.7 0.1.7 1.0.0 angular-material-source - [X] karma-jasmine 0.3.8 0.3.8 1.0.2 angular-material-source - [X] karma-sauce-launcher 0.2.14 0.2.14 1.0.0 angular-material-source - [X] lazypipe 0.2.4 0.2.4 1.0.1 angular-material-source - [X] lodash 3.10.1 3.10.1 4.13.1 angular-material-source - [X] merge-stream 0.1.8 0.1.8 1.0.0 angular-material-source - [?] prompt-sync 1.0.0 1.0.0 4.1.4 angular-material-source - [X] through2 0.6.5 0.6.5 2.0.1 angular-material-source X: Updated Package; ?: Not sure about update -: Removed Package Closes #7956
1 parent ee2b6a0 commit 31078e1

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

gulp/tasks/jshint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ var jshint = require('gulp-jshint');
55
exports.task = function() {
66
return gulp.src(config.jsFiles)
77
.pipe(jshint('.jshintrc'))
8-
.pipe(jshint.reporter(require('jshint-summary')({
8+
.pipe(jshint.reporter('jshint-summary', {
99
fileColCol: ',bold',
1010
positionCol: ',bold',
1111
codeCol: 'green,bold',
1212
reasonCol: 'cyan'
13-
})))
13+
}))
1414
.pipe(jshint.reporter('fail'));
1515
};

gulp/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function buildModule(module, opts) {
130130

131131
function buildMin() {
132132
return lazypipe()
133-
.pipe(gulpif, /.css$/, minifyCss(),
133+
.pipe(gulpif, /.css$/, cleanCSS(),
134134
uglify({ preserveComments: 'some' })
135135
.on('error', function(e) {
136136
console.log('\x07',e.message);

package.json

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -28,55 +28,53 @@
2828
"angular-route": "^1.5.0",
2929
"angular-sanitize": "^1.5.0",
3030
"angular-touch": "^1.5.0",
31-
"angularytics": "^0.3.0",
31+
"angularytics": "^0.4.0",
3232
"canonical-path": "0.0.2",
3333
"cli-color": "^1.0.0",
3434
"colors": "^1.1.0",
3535
"conventional-changelog": "git://github.com/robertmesserle/conventional-changelog.git",
3636
"dgeni": "^0.4.1",
3737
"dgeni-packages": "^0.13.0",
38-
"esprima": "^1.2.2",
3938
"github-contributors-list": "^1.2.1",
40-
"glob": "~4.0.2",
41-
"gulp": "^3.9.0",
39+
"glob": "~7.0.5",
40+
"gulp": "^3.9.1",
4241
"gulp-add-src": "^0.2.0",
4342
"gulp-autoprefixer": "^3.1.0",
4443
"gulp-concat": "^2.2.0",
45-
"gulp-connect": "^2.2.0",
44+
"gulp-connect": "^4.1.0",
4645
"gulp-cssnano": "^2.1.2",
47-
"gulp-filter": "^1.0.2",
46+
"gulp-filter": "^4.0.0",
4847
"gulp-frep": "^0.1.3",
49-
"gulp-if": "^1.2.0",
50-
"gulp-insert": "^0.4.0",
51-
"gulp-jshint": "^1.5.5",
52-
"gulp-ng-annotate": "^0.5.2",
53-
"gulp-ng-html2js": "^0.1.8",
48+
"gulp-if": "^2.0.1",
49+
"gulp-insert": "^0.5.0",
50+
"gulp-jshint": "^2.0.1",
51+
"gulp-ng-annotate": "^2.0.0",
52+
"gulp-ng-html2js": "^0.2.2",
5453
"gulp-plumber": "^1.0.0",
5554
"gulp-rename": "^1.2.0",
56-
"gulp-sass": "^2.0.4",
55+
"gulp-sass": "^2.3.2",
5756
"gulp-uglify": "^1.2.0",
5857
"gulp-util": "^3.0.1",
5958
"gulp-webserver": "^0.9.1",
6059
"jasmine-core": "^2.2.0",
61-
"jquery": "^2.1.3",
62-
"jshint-summary": "^0.3.0",
63-
"karma": "^0.13.15",
64-
"karma-chrome-launcher": "^1.0.1",
65-
"karma-firefox-launcher": "^0.1.3",
66-
"karma-jasmine": "^0.3.6",
60+
"jquery": "^3.0.0",
61+
"jshint": "^2.9.2",
62+
"jshint-summary": "^0.4.0",
63+
"karma": "^1.0.0",
64+
"karma-firefox-launcher": "^1.0.0",
65+
"karma-jasmine": "^1.0.2",
6766
"karma-phantomjs-launcher": "^1.0.0",
68-
"karma-sauce-launcher": "^0.2.14",
69-
"lazypipe": "^0.2.2",
70-
"lodash": "^3.0.0",
71-
"merge-stream": "^0.1.6",
67+
"karma-sauce-launcher": "^1.0.0",
68+
"lazypipe": "^1.0.1",
69+
"lodash": "^4.13.1",
7270
"minimist": "^1.1.0",
7371
"mkdirp": "^0.5.0",
7472
"phantomjs-prebuilt": "^2.1.7",
7573
"postcss": "^5.1.2",
7674
"prompt-sync": "^1.0.0",
7775
"q": "^1.0.1",
7876
"stream-series": "^0.1.1",
79-
"through2": "^0.6.3"
77+
"through2": "^2.0.1"
8078
},
8179
"scripts": {
8280
"contributors": "rm -f ./docs/app/contributors.json; githubcontrib --owner=angular --repository=material --cols=6 --format=json --showlogin=true --sortBy=login --sha=master > ./docs/app/contributors.json",

0 commit comments

Comments
 (0)