workspacescursedingeneral

This commit is contained in:
Jacob Nguyen
2025-02-07 01:34:03 -06:00
parent 04141a4596
commit 38c564a7f7
5 changed files with 6325 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ jobs:
working-directory: ./packages/${{ github.event.inputs.package }}
- run: npm install
- run: npm run build --workspace @sern/${{ github.event.inputs.package }}
- run: npm run build -ws
- run: npm run test --workspace @sern/${{ github.event.inputs.package }}
- run: npm publish --workspace @sern/${{ github.event.inputs.package }}

6323
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,6 +7,7 @@
],
"devDependencies": {
"@types/node": "^18.16.0",
"microbundle": "^0.15.1",
"openapi-typescript": "^6.7.2",
"typescript": "^5.0.0",
"vitest": "^1.2.2"

View File

@@ -5,7 +5,7 @@
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"scripts": {
"bundle": "microbundle --target node",
"build": "microbundle --target node",
"watch": "microbundle watch",
"test": "microbundle --target node && node ./test/index.test.mjs"
},

View File

@@ -1,6 +1,6 @@
{
"name": "@sern/ioc",
"version": "1.1.1",
"version": "1.1.2",
"description": "Dependency Injection system",
"main": "dist/index.js",
"module": "./dist/index.js",