fix: change wrong internal package dependencies version (#241)
This commit is contained in:
parent
234ffaf38c
commit
9bdff22174
7 changed files with 1266 additions and 1561 deletions
2793
package-lock.json
generated
2793
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"isolatedModules": true,
|
||||
"moduleResolution": "node",
|
||||
"preserveWatchOutput": true,
|
||||
"skipLibCheck": true,
|
||||
"noEmit": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
|
@ -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": {
|
||||
|
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
"astro": "^1.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astro-reactive/common": "latest"
|
||||
"@astro-reactive/common": "*"
|
||||
},
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
|
|
|
@ -21,7 +21,9 @@
|
|||
"env": ["CI"],
|
||||
"outputs": []
|
||||
},
|
||||
"check": {},
|
||||
"check": {
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"clean": {}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue