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:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
- run: npm ci
|
- run: npm i --force
|
||||||
- run: npm run clean
|
|
||||||
- run: npm run check
|
- run: npm run check
|
||||||
- run: npm run test
|
- run: npm run test
|
||||||
- run: npm run lint
|
- 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",
|
"main": "index.ts",
|
||||||
"types": "./types/index.ts",
|
"types": "./types/index.ts",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"rimraf": "^3.0.2"
|
"rimraf": "^3.0.2",
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@astro-reactive/tsconfig": "*"
|
"@astro-reactive/tsconfig": "*"
|
||||||
},
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
|
|
|
@ -34,6 +34,8 @@
|
||||||
"clean": "rimraf node_modules .turbo dist"
|
"clean": "rimraf node_modules .turbo dist"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@astro-reactive/eslint-config-custom": "*",
|
||||||
|
"@astro-reactive/tsconfig": "*",
|
||||||
"@types/eslint": "^8.4.6",
|
"@types/eslint": "^8.4.6",
|
||||||
"@types/node": "^18.7.18",
|
"@types/node": "^18.7.18",
|
||||||
"@types/prettier": "^2.7.0",
|
"@types/prettier": "^2.7.0",
|
||||||
|
@ -52,8 +54,6 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "*",
|
"@astro-reactive/common": "*",
|
||||||
"@astro-reactive/eslint-config-custom": "*",
|
|
||||||
"@astro-reactive/tsconfig": "*",
|
|
||||||
"@astro-reactive/validator": "*",
|
"@astro-reactive/validator": "*",
|
||||||
"short-unique-id": "^4.4.4"
|
"short-unique-id": "^4.4.4"
|
||||||
},
|
},
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
"clean": "rimraf node_modules .turbo dist"
|
"clean": "rimraf node_modules .turbo dist"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@astro-reactive/eslint-config-custom": "*",
|
||||||
|
"@astro-reactive/tsconfig": "*",
|
||||||
"@types/eslint": "^8.4.6",
|
"@types/eslint": "^8.4.6",
|
||||||
"@types/node": "^18.7.18",
|
"@types/node": "^18.7.18",
|
||||||
"@types/prettier": "^2.7.0",
|
"@types/prettier": "^2.7.0",
|
||||||
|
@ -48,9 +50,7 @@
|
||||||
"astro": "^2.1.3"
|
"astro": "^2.1.3"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "*",
|
"@astro-reactive/common": "*"
|
||||||
"@astro-reactive/eslint-config-custom": "*",
|
|
||||||
"@astro-reactive/tsconfig": "*"
|
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
Loading…
Reference in a new issue