Skip to content

Commit

Permalink
fix: add automated releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Sep 12, 2024
1 parent ca0db97 commit 26768a0
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 23 deletions.
1 change: 1 addition & 0 deletions packages/di-react/gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "@wroud/ci/gulp";
27 changes: 15 additions & 12 deletions packages/di-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
"./src/*": "./src/*"
},
"files": [
"LICENSE",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts",
Expand All @@ -35,12 +36,20 @@
"!.tsbuildinfo"
],
"scripts": {
"build": "tsc -b",
"clear": "rimraf ./lib",
"ci:prepublish": "yarn gulp ci:prepublish",
"test": "tests-runner",
"test:ci": "CI=true yarn run test",
"build": "tsc -b",
"watch:tsc": "tsc -b -w",
"dev": "concurrently \"npm:watch:*\"",
"ci:prepublish": ""
"clear": "rimraf ./lib"
},
"dependencies": {
"@wroud/di": "workspace:^0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10",
Expand All @@ -51,6 +60,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-v8": "^2",
"@wroud/ci": "workspace:*",
"@wroud/tests-runner": "workspace:*",
"@wroud/tsconfig": "workspace:*",
"concurrently": "^8",
Expand All @@ -66,12 +76,5 @@
"dependency-injection",
"di",
"react"
],
"dependencies": {
"@wroud/di": "workspace:^0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
]
}
1 change: 1 addition & 0 deletions packages/di-tools-analyzer/gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "@wroud/ci/gulp";
23 changes: 13 additions & 10 deletions packages/di-tools-analyzer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
"./src/*": "./src/*"
},
"files": [
"LICENSE",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts",
Expand All @@ -35,18 +36,25 @@
"!.tsbuildinfo"
],
"scripts": {
"build": "tsc -b",
"clear": "rimraf ./lib",
"ci:prepublish": "yarn gulp ci:prepublish",
"test": "tests-runner",
"test:ci": "CI=true yarn run test",
"build": "tsc -b",
"watch:tsc": "tsc -b -w",
"dev": "concurrently \"npm:watch:*\"",
"ci:prepublish": ""
"clear": "rimraf ./lib"
},
"dependencies": {
"@wroud/di": "workspace:^0",
"d3": "^7",
"uuid": "^10"
},
"devDependencies": {
"@types/d3": "^7",
"@types/node": "^20",
"@types/uuid": "^10",
"@vitest/coverage-v8": "^2",
"@wroud/ci": "workspace:*",
"@wroud/tests-runner": "workspace:*",
"@wroud/tsconfig": "workspace:*",
"concurrently": "^8",
Expand All @@ -62,10 +70,5 @@
"analyzer",
"tools",
"report"
],
"dependencies": {
"@wroud/di": "workspace:^0",
"d3": "^7",
"uuid": "^10"
}
]
}
2 changes: 1 addition & 1 deletion packages/di/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"./src/*": "./src/*"
},
"files": [
"LICENSE",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
Expand Down
2 changes: 2 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3329,6 +3329,7 @@ __metadata:
"@types/react": "npm:^18"
"@types/react-dom": "npm:^18"
"@vitest/coverage-v8": "npm:^2"
"@wroud/ci": "workspace:*"
"@wroud/di": "workspace:^0"
"@wroud/tests-runner": "workspace:*"
"@wroud/tsconfig": "workspace:*"
Expand All @@ -3354,6 +3355,7 @@ __metadata:
"@types/node": "npm:^20"
"@types/uuid": "npm:^10"
"@vitest/coverage-v8": "npm:^2"
"@wroud/ci": "workspace:*"
"@wroud/di": "workspace:^0"
"@wroud/tests-runner": "workspace:*"
"@wroud/tsconfig": "workspace:*"
Expand Down

0 comments on commit 26768a0

Please sign in to comment.