Skip to content

Commit

Permalink
resolve dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachJW34 authored and BuckyMaler committed Jul 11, 2020
1 parent 17a097b commit b66ffe1
Show file tree
Hide file tree
Showing 7 changed files with 189 additions and 725 deletions.
4 changes: 4 additions & 0 deletions libs/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
"@angular-devkit/build-angular": "~0.901.0",
"@angular-devkit/core": "~9.1.0",
"@angular-devkit/schematics": "~9.1.0",
"@nrwl/cypress": "^9.0.0",
"@nrwl/jest": "^9.0.0",
"@nrwl/linter": "^9.0.0",
"@vue/cli-shared-utils": "~4.3.0",
"copy-webpack-plugin": "^5.1.1",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"rxjs": "6.5.4",
Expand Down
2 changes: 1 addition & 1 deletion libs/vue/src/schematics/application/schematic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ describe('application schematic', () => {
expect(main).toContain(tags.stripIndent`
new Vue({
router,
render: h => h(App)
render: (h) => h(App),
}).$mount('#app');
`);

Expand Down
7 changes: 5 additions & 2 deletions libs/vue/src/schematics/application/schematic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,11 @@ function addJest(options: NormalizedSchema): Rule {
addDepsToPackageJson(
{},
{
'@vue/cli-plugin-unit-jest': '~4.3.0',
'@vue/test-utils': '1.0.0-beta.31'
'@vue/test-utils': '1.0.0-beta.31',
'babel-core': '^7.0.0-bridge.0',
'jest-serializer-vue': '^2.0.2',
'jest-transform-stub': '^2.0.0',
'vue-jest': '^3.0.5'
},
true
)
Expand Down
2 changes: 1 addition & 1 deletion libs/vue/src/schematics/vuex/schematic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('vuex schematic', () => {
expect(main).toContain(tags.stripIndent`
new Vue({
store,
render: h => h(App)
render: (h) => h(App),
}).$mount('#app');
`);
});
Expand Down
Loading

0 comments on commit b66ffe1

Please sign in to comment.