File tree Expand file tree Collapse file tree 3 files changed +38
-9
lines changed Expand file tree Collapse file tree 3 files changed +38
-9
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ jobs :
3
+ build :
4
+ docker :
5
+ # specify the version you desire here
6
+ - image : circleci/node:8.9-browsers
7
+
8
+ working_directory : ~/repo
9
+
10
+ steps :
11
+ - checkout
12
+
13
+ # Download and cache dependencies
14
+ - restore_cache :
15
+ keys :
16
+ - v1-dependencies-{{ checksum "yarn.lock" }}
17
+ # fallback to using the latest cache if no exact match is found
18
+ - v1-dependencies-
19
+
20
+ - run : yarn install
21
+
22
+ - save_cache :
23
+ paths :
24
+ - node_modules
25
+ - ~/.cache/yarn
26
+ key : v1-dependencies-{{ checksum "yarn.lock" }}
27
+
28
+ # run tests!
29
+ - run : yarn test
Original file line number Diff line number Diff line change 42
42
"file-loader" : " ^1.1.6" ,
43
43
"friendly-errors-webpack-plugin" : " ^1.6.1" ,
44
44
"inquirer" : " ^5.0.0" ,
45
- "launch-editor-middleware" : " ^1.0 .0" ,
45
+ "launch-editor-middleware" : " ^2.1 .0" ,
46
46
"nightwatch" : " ^0.9.19" ,
47
47
"nightwatch-helpers" : " ^1.2.0" ,
48
48
"selenium-server" : " 2.52.0" ,
65
65
"vue-router" : " ^3.0.1" ,
66
66
"vuex" : " ^3.0.1"
67
67
}
68
- }
68
+ }
Original file line number Diff line number Diff line change @@ -2947,15 +2947,15 @@ kind-of@^6.0.0, kind-of@^6.0.2:
2947
2947
version "6.0.2"
2948
2948
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
2949
2949
2950
- launch-editor-middleware@^1.0 .0 :
2951
- version "1.0 .0"
2952
- resolved "https://registry.yarnpkg.com/launch-editor-middleware/-/launch-editor-middleware-1.0.0. tgz#1336164fdfdffa5cdaa83612fdbd962af32a726e "
2950
+ launch-editor-middleware@^2.1 .0 :
2951
+ version "2.1 .0"
2952
+ resolved "https://registry.yarnpkg.com/launch-editor-middleware/-/launch-editor-middleware-2. 1.0.tgz#31483e203e4fce952c1ea4e8e9e5e643a0fd08d5 "
2953
2953
dependencies :
2954
- launch-editor "^1 .0.0"
2954
+ launch-editor "^2 .0.0"
2955
2955
2956
- launch-editor@^1 .0.0 :
2957
- version "1 .0.0"
2958
- resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-1 .0.0.tgz#236b5d6891ca946c3544dcf2f82d3d7d7320ba76 "
2956
+ launch-editor@^2 .0.0 :
2957
+ version "2 .0.0"
2958
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2 .0.0.tgz#24a978139e0e9747fec2b4115f09a684526e2b90 "
2959
2959
dependencies :
2960
2960
chalk "^2.3.0"
2961
2961
shell-quote "^1.6.1"
You can’t perform that action at this time.
0 commit comments