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", "name": "@astro-reactive/common",
"version": "0.1.3", "version": "0.1.3",
"description": "Common code for Astro Reactive Packages", "description": "Common code for Astro Reactive Packages",
"main": "index.js", "main": "index.ts",
"types": "./types/index.ts",
"devDependencies": { "devDependencies": {
"rimraf": "^3.0.2" "rimraf": "^3.0.2"
}, },

View file

@ -1,5 +1,12 @@
{ {
"compilerOptions": { "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", "license": "MIT",
"dependencies": { "dependencies": {
"@astro-reactive/common": "latest", "@astro-reactive/common": "*",
"@astro-reactive/validator": "latest", "@astro-reactive/validator": "*",
"short-unique-id": "^4.4.4" "short-unique-id": "^4.4.4"
}, },
"publishConfig": { "publishConfig": {

View file

@ -1,6 +1,14 @@
{ {
"extends": "astro/tsconfigs/strictest", "extends": "astro/tsconfigs/strictest",
"compilerOptions": { "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" "astro": "^1.5.0"
}, },
"dependencies": { "dependencies": {
"@astro-reactive/common": "latest" "@astro-reactive/common": "*"
}, },
"main": "index.js", "main": "index.js",
"directories": { "directories": {

View file

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