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",
|
"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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"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",
|
"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": {
|
||||||
|
|
|
@ -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"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -21,7 +21,9 @@
|
||||||
"env": ["CI"],
|
"env": ["CI"],
|
||||||
"outputs": []
|
"outputs": []
|
||||||
},
|
},
|
||||||
"check": {},
|
"check": {
|
||||||
|
"dependsOn": ["^build"]
|
||||||
|
},
|
||||||
"clean": {}
|
"clean": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue