fix: change wrong internal package dependencies version (#241)

This commit is contained in:
Fazza Razaq Amiarso 2023-01-02 23:29:24 +07:00 committed by GitHub
parent 234ffaf38c
commit 9bdff22174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1266 additions and 1561 deletions

2793
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,8 @@
"name": "@astro-reactive/common",
"version": "0.1.3",
"description": "Common code for Astro Reactive Packages",
"main": "index.js",
"main": "index.ts",
"types": "./types/index.ts",
"devDependencies": {
"rimraf": "^3.0.2"
},

View file

@ -1,5 +1,12 @@
{
"compilerOptions": {
"skipLibCheck": true
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"moduleResolution": "node",
"preserveWatchOutput": true,
"skipLibCheck": true,
"noEmit": true,
"strict": true
}
}

View file

@ -54,8 +54,8 @@
},
"license": "MIT",
"dependencies": {
"@astro-reactive/common": "latest",
"@astro-reactive/validator": "latest",
"@astro-reactive/common": "*",
"@astro-reactive/validator": "*",
"short-unique-id": "^4.4.4"
},
"publishConfig": {

View file

@ -1,6 +1,14 @@
{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"skipLibCheck": true
}
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"moduleResolution": "node",
"preserveWatchOutput": true,
"skipLibCheck": true,
"noEmit": true,
"strict": true
},
"exclude": ["node_modules"]
}

View file

@ -51,7 +51,7 @@
"astro": "^1.5.0"
},
"dependencies": {
"@astro-reactive/common": "latest"
"@astro-reactive/common": "*"
},
"main": "index.js",
"directories": {

View file

@ -21,7 +21,9 @@
"env": ["CI"],
"outputs": []
},
"check": {},
"check": {
"dependsOn": ["^build"]
},
"clean": {}
}
}