Skip to content

Commit

Permalink
feat(vue): add missing deps to vue package.json to fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Sep 12, 2023
1 parent ab417e8 commit 084afc1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ tmp
*.log
jest.debug.config.js
.tool-versions
/.nx
/.nx-cache
/.verdaccio/build/local-registry
/graph/client/src/assets/environment.js
Expand All @@ -19,7 +20,6 @@ jest.debug.config.js
/graph/client/src/assets/generated-task-graphs
/nx-dev/nx-dev/public/documentation
/nx-dev/nx-dev/public/images/open-graph

# Issues scraper creates these files, stored by github's cache
/scripts/issues-scraper/cached

Expand Down
5 changes: 4 additions & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@
},
"dependencies": {
"tslib": "^2.3.0",
"@nx/cypress": "file:../cypress",
"@nx/devkit": "file:../devkit",
"@nx/jest": "file:../jest",
"@nx/js": "file:../js",
"@nx/linter": "file:../linter",
"@nx/playwright": "file:../playwright",
"@nx/vite": "file:../vite",
"@nx/web": "file:../web"
"@nx/web": "file:../web",
"@phenomnomnominal/tsquery": "~5.0.1"
},
"publishConfig": {
"access": "public"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ exports[`application generator should set up project correctly with given option
"passWithNoTests": true,
"reportsDirectory": "../coverage/test"
}
},
"serve-static": {
"executor": "@nx/web:file-server",
"options": {
"buildTarget": "test:build"
}
}
}
}
Expand Down Expand Up @@ -164,13 +170,22 @@ exports[`application generator should set up project correctly with given option
".prettierrc",
"nx.json",
"package.json",
"test-e2e/.eslintrc.json",
"test-e2e/cypress.config.ts",
"test-e2e/project.json",
"test-e2e/src/e2e/app.cy.ts",
"test-e2e/src/fixtures/example.json",
"test-e2e/src/support/app.po.ts",
"test-e2e/src/support/commands.ts",
"test-e2e/src/support/e2e.ts",
"test-e2e/tsconfig.json",
"test/.eslintrc.json",
"test/index.html",
"test/project.json",
"test/src/__tests__/App.spec.ts",
"test/src/App.vue",
"test/src/components/NxWelcome.vue",
"test/src/main.ts",
"test/src/NxWelcome.vue",
"test/src/styles.css",
"test/tsconfig.app.json",
"test/tsconfig.json",
Expand Down

0 comments on commit 084afc1

Please sign in to comment.