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

Commit 74dd2cd

Browse files
committed
build: update to jquery 3.5.1
- update to latest `minimist`, `node-sass`, `graceful-fs` - add missing peer dependency from eslint: `acorn` - remove deprecated `natives` which is no longer needed after `graceful-fs@4` - update `engines` to NodeJS 10+ and NPM 6+ - update to latest `circleci/node` image Closes #11898
1 parent b486a41 commit 74dd2cd

File tree

3 files changed

+46
-25
lines changed

3 files changed

+46
-25
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# See http://blog.daemonl.com/2016/02/yaml.html
77
# To validate changes, use an online parser, eg. http://yaml-online-parser.appspot.com/
88

9-
var_1: &docker_image circleci/node:10.18.0-browsers
9+
var_1: &docker_image circleci/node:10.20.0-browsers
1010
var_2: &cache_key angularjs-material-{{ checksum "package-lock.json" }}
1111

1212
# Settings common to each job

package-lock.json

Lines changed: 38 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"devDependencies": {
3535
"@octokit/rest": "^17.0.1",
3636
"@types/angular": "~1.6.57",
37+
"acorn": "^7.1.1",
3738
"add-stream": "^1.0.0",
3839
"ajv": "^6.12.0",
3940
"angular": "^1.7.9",
@@ -73,7 +74,7 @@
7374
"gulp-uglify": "^3.0.2",
7475
"gulp-util": "^3.0.8",
7576
"jasmine-core": "2.8.0",
76-
"jquery": "^3.4.1",
77+
"jquery": "^3.5.1",
7778
"jshint": "^2.11.0",
7879
"jshint-summary": "^0.4.0",
7980
"karma": "^4.4.1",
@@ -85,7 +86,7 @@
8586
"karma-sauce-launcher": "^2.0.2",
8687
"lazypipe": "^1.0.2",
8788
"lodash": "^4.17.15",
88-
"minimist": "^1.2.3",
89+
"minimist": "^1.2.5",
8990
"mkdirp": "0.5.1",
9091
"moment": "^2.24.0",
9192
"postcss": "^7.0.27",
@@ -95,9 +96,8 @@
9596
"through2": "^3.0.1"
9697
},
9798
"resolutions": {
98-
"graceful-fs": "^4.2.3",
99-
"natives": "^1.1.6",
100-
"node-sass": "^4.13.1"
99+
"graceful-fs": "^4.2.4",
100+
"node-sass": "^4.14.0"
101101
},
102102
"scripts": {
103103
"build": "gulp build",
@@ -127,7 +127,7 @@
127127
"not op_mob <= 12.1"
128128
],
129129
"engines": {
130-
"node": ">=8.17",
131-
"npm": ">=5"
130+
"node": ">=10",
131+
"npm": ">=6"
132132
}
133133
}

0 commit comments

Comments
 (0)