devops: fix dependencies for Astro v2+ support (#275)
This commit is contained in:
parent
f3420f9272
commit
414a0bd854
6 changed files with 8747 additions and 3769 deletions
7
.changeset/unlucky-candles-scream.md
Normal file
7
.changeset/unlucky-candles-scream.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@astro-reactive/validator": patch
|
||||
"@astro-reactive/common": patch
|
||||
"@astro-reactive/form": patch
|
||||
---
|
||||
|
||||
Fix dependencies for Astro v2+ support
|
3
.github/workflows/build-and-test.yml
vendored
3
.github/workflows/build-and-test.yml
vendored
|
@ -25,8 +25,7 @@ jobs:
|
|||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: "npm"
|
||||
- run: npm ci
|
||||
- run: npm run clean
|
||||
- run: npm i --force
|
||||
- run: npm run check
|
||||
- run: npm run test
|
||||
- run: npm run lint
|
||||
|
|
12492
package-lock.json
generated
12492
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,7 @@
|
|||
"main": "index.ts",
|
||||
"types": "./types/index.ts",
|
||||
"devDependencies": {
|
||||
"rimraf": "^3.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"rimraf": "^3.0.2",
|
||||
"@astro-reactive/tsconfig": "*"
|
||||
},
|
||||
"exports": {
|
||||
|
|
|
@ -34,6 +34,8 @@
|
|||
"clean": "rimraf node_modules .turbo dist"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@astro-reactive/eslint-config-custom": "*",
|
||||
"@astro-reactive/tsconfig": "*",
|
||||
"@types/eslint": "^8.4.6",
|
||||
"@types/node": "^18.7.18",
|
||||
"@types/prettier": "^2.7.0",
|
||||
|
@ -52,8 +54,6 @@
|
|||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "*",
|
||||
"@astro-reactive/eslint-config-custom": "*",
|
||||
"@astro-reactive/tsconfig": "*",
|
||||
"@astro-reactive/validator": "*",
|
||||
"short-unique-id": "^4.4.4"
|
||||
},
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
"clean": "rimraf node_modules .turbo dist"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@astro-reactive/eslint-config-custom": "*",
|
||||
"@astro-reactive/tsconfig": "*",
|
||||
"@types/eslint": "^8.4.6",
|
||||
"@types/node": "^18.7.18",
|
||||
"@types/prettier": "^2.7.0",
|
||||
|
@ -48,9 +50,7 @@
|
|||
"astro": "^2.1.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "*",
|
||||
"@astro-reactive/eslint-config-custom": "*",
|
||||
"@astro-reactive/tsconfig": "*"
|
||||
"@astro-reactive/common": "*"
|
||||
},
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
|
|
Loading…
Reference in a new issue