devops: fix dependencies for Astro v2+ support (#275)

This commit is contained in:
Ayo Ayco 2023-03-24 21:43:09 +01:00 committed by GitHub
parent f3420f9272
commit 414a0bd854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8747 additions and 3769 deletions

View file

@ -0,0 +1,7 @@
---
"@astro-reactive/validator": patch
"@astro-reactive/common": patch
"@astro-reactive/form": patch
---
Fix dependencies for Astro v2+ support

View file

@ -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

File diff suppressed because it is too large Load diff

View file

@ -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": {

View file

@ -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"
},

View file

@ -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": {