Skip to content

Commit 8eb1d26

Browse files
feat(qwik-angular): copy plugin implementation from the main repo
1 parent 153d6d6 commit 8eb1d26

24 files changed

+4696
-658
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules
2+
3+
vite.config.ts

nx.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,19 @@
2323
"{workspaceRoot}/.eslintrc.json",
2424
"{workspaceRoot}/.eslintignore"
2525
]
26+
},
27+
"test": {
28+
"inputs": ["default", "^production"]
2629
}
2730
},
2831
"namedInputs": {
2932
"default": ["{projectRoot}/**/*", "sharedGlobals"],
30-
"production": ["default", "!{projectRoot}/.eslintrc.json"],
33+
"production": [
34+
"default",
35+
"!{projectRoot}/.eslintrc.json",
36+
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
37+
"!{projectRoot}/tsconfig.spec.json"
38+
],
3139
"sharedGlobals": []
3240
},
3341
"workspaceLayout": {

package.json

+17-3
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,37 @@
44
"license": "MIT",
55
"scripts": {},
66
"private": true,
7-
"dependencies": {},
87
"devDependencies": {
8+
"@builder.io/qwik": "~1.2.6",
9+
"@builder.io/qwik-city": "~1.2.6",
910
"@nx/angular": "16.5.0",
1011
"@nx/eslint-plugin": "16.5.0",
1112
"@nx/js": "16.5.0",
1213
"@nx/linter": "16.5.0",
14+
"@nx/vite": "16.5.0",
1315
"@nx/workspace": "16.5.0",
14-
"@types/node": "18.7.1",
16+
"@types/node": "^18.16.1",
1517
"@typescript-eslint/eslint-plugin": "^5.60.1",
1618
"@typescript-eslint/parser": "^5.60.1",
19+
"@vitest/ui": "~0.32.0",
1720
"eslint": "~8.15.0",
1821
"eslint-config-prettier": "8.1.0",
22+
"eslint-plugin-qwik": "~1.2.6",
23+
"node-fetch": "~3.3.0",
1924
"nx": "16.5.0",
2025
"nx-cloud": "latest",
2126
"prettier": "^2.6.2",
27+
"qwik-nx": "^1.0.8",
28+
"rollup": "^3.27.1",
29+
"sass": "~1.56.1",
30+
"tslib": "^2.3.0",
2231
"typescript": "~5.1.3",
23-
"verdaccio": "^5.0.4"
32+
"undici": "^5.22.0",
33+
"verdaccio": "^5.0.4",
34+
"vite": "~4.4.0",
35+
"vite-plugin-dts": "~2.3.0",
36+
"vite-tsconfig-paths": "~4.2.0",
37+
"vitest": "~0.32.0"
2438
},
2539
"nx": {
2640
"includedScripts": []

0 commit comments

Comments
 (0)