Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit 71d548b

Browse files
committed
update dependencies
1 parent 080356d commit 71d548b

File tree

3 files changed

+234
-286
lines changed

3 files changed

+234
-286
lines changed

.circleci/config.yml

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
version: 2
22

33
defaults: &defaults
4-
docker:
5-
- image: circleci/node:10-browsers
6-
environment:
7-
CHROME_BIN: /usr/bin/google-chrome
8-
working_directory: ~/vue-resource
4+
docker:
5+
- image: circleci/node:14-browsers
6+
environment:
7+
CHROME_BIN: /usr/bin/google-chrome
8+
working_directory: ~/vue-resource
99

1010
jobs:
11-
build:
12-
<<: *defaults
13-
steps:
14-
- checkout
15-
- restore_cache:
16-
key: yarn-{{ checksum "yarn.lock" }}
17-
- run:
18-
name: Install Dependencies
19-
command: yarn --pure-lockfile
20-
- run:
21-
name: Run Tests
22-
command: |
23-
yarn test
24-
yarn karma --browsers Chrome
25-
- run:
26-
name: Build Release
27-
command: yarn build
28-
- save_cache:
29-
key: yarn-{{ checksum "yarn.lock" }}
30-
paths:
31-
- ./node_modules
11+
build:
12+
<<: *defaults
13+
steps:
14+
- checkout
15+
- restore_cache:
16+
key: yarn-{{ checksum "yarn.lock" }}
17+
- run:
18+
name: Install Dependencies
19+
command: yarn --pure-lockfile
20+
- run:
21+
name: Run Tests
22+
command: |
23+
yarn test
24+
yarn karma --browsers Chrome
25+
- run:
26+
name: Build Release
27+
command: yarn build
28+
- save_cache:
29+
key: yarn-{{ checksum "yarn.lock" }}
30+
paths:
31+
- ./node_modules

package.json

+61-61
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
11
{
2-
"name": "vue-resource",
3-
"version": "1.5.2",
4-
"main": "dist/vue-resource.common.js",
5-
"module": "dist/vue-resource.esm.js",
6-
"unpkg": "dist/vue-resource.min.js",
7-
"jsdelivr": "dist/vue-resource.min.js",
8-
"typings": "types/index.d.ts",
9-
"description": "The HTTP client for Vue.js",
10-
"homepage": "https://github.com/pagekit/vue-resource",
11-
"license": "MIT",
12-
"keywords": [
13-
"vue",
14-
"xhr",
15-
"http",
16-
"ajax"
17-
],
18-
"bugs": {
19-
"url": "https://github.com/pagekit/vue-resource/issues"
20-
},
21-
"repository": {
22-
"type": "git",
23-
"url": "git+https://github.com/pagekit/vue-resource.git"
24-
},
25-
"scripts": {
26-
"up": "yarn upgrade-interactive --latest",
27-
"test": "jest --env=node",
28-
"karma": "karma start test/karma.conf.js --single-run",
29-
"build": "node build/build.js",
30-
"release": "node build/release.js",
31-
"webpack": "webpack --config test/webpack.config.js"
32-
},
33-
"browser": {
34-
"got": false
35-
},
36-
"dependencies": {
37-
"got": "^8.0.3"
38-
},
39-
"devDependencies": {
40-
"@babel/core": "^7.2.2",
41-
"@babel/preset-env": "^7.2.0",
42-
"babel-loader": "^8.0.4",
43-
"eslint": "^5.11.1",
44-
"generate-release": "^1.1.1",
45-
"jasmine": "^3.3.1",
46-
"jasmine-core": "^3.3.0",
47-
"jest": "^23.6.0",
48-
"karma": "^3.1.4",
49-
"karma-chrome-launcher": "^2.2.0",
50-
"karma-firefox-launcher": "^1.1.0",
51-
"karma-jasmine": "^2.0.1",
52-
"karma-safari-launcher": "^1.0.0",
53-
"karma-webpack": "^3.0.5",
54-
"replace-in-file": "^3.4.2",
55-
"rollup": "^0.66.0",
56-
"rollup-plugin-babel": "^4.1.0",
57-
"rollup-plugin-replace": "^2.1.0",
58-
"uglify-js": "^3.4.9",
59-
"vue": "^2.5.21",
60-
"webpack": "^4.28.3",
61-
"webpack-cli": "^3.1.2"
62-
}
2+
"name": "vue-resource",
3+
"version": "1.5.2",
4+
"main": "dist/vue-resource.common.js",
5+
"module": "dist/vue-resource.esm.js",
6+
"unpkg": "dist/vue-resource.min.js",
7+
"jsdelivr": "dist/vue-resource.min.js",
8+
"typings": "types/index.d.ts",
9+
"description": "The HTTP client for Vue.js",
10+
"homepage": "https://github.com/pagekit/vue-resource",
11+
"license": "MIT",
12+
"keywords": [
13+
"vue",
14+
"xhr",
15+
"http",
16+
"ajax"
17+
],
18+
"bugs": {
19+
"url": "https://github.com/pagekit/vue-resource/issues"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/pagekit/vue-resource.git"
24+
},
25+
"scripts": {
26+
"up": "yarn upgrade-interactive --latest",
27+
"test": "jest --env=node",
28+
"karma": "karma start test/karma.conf.js --single-run",
29+
"build": "node build/build.js",
30+
"release": "node build/release.js",
31+
"webpack": "webpack --config test/webpack.config.js"
32+
},
33+
"browser": {
34+
"got": false
35+
},
36+
"dependencies": {
37+
"got": ">=8.0 <12.0"
38+
},
39+
"devDependencies": {
40+
"@babel/core": "^7.2.2",
41+
"@babel/preset-env": "^7.2.0",
42+
"babel-loader": "^8.0.4",
43+
"eslint": "^5.11.1",
44+
"generate-release": "^1.1.1",
45+
"jasmine": "^3.3.1",
46+
"jasmine-core": "^3.3.0",
47+
"jest": "^23.6.0",
48+
"karma": "^3.1.4",
49+
"karma-chrome-launcher": "^2.2.0",
50+
"karma-firefox-launcher": "^1.1.0",
51+
"karma-jasmine": "^2.0.1",
52+
"karma-safari-launcher": "^1.0.0",
53+
"karma-webpack": "^3.0.5",
54+
"replace-in-file": "^3.4.2",
55+
"rollup": "^0.66.0",
56+
"rollup-plugin-babel": "^4.1.0",
57+
"rollup-plugin-replace": "^2.1.0",
58+
"uglify-js": "^3.4.9",
59+
"vue": "^2.5.21",
60+
"webpack": "^4.28.3",
61+
"webpack-cli": "^3.1.2"
62+
}
6363
}

0 commit comments

Comments
 (0)