Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
ref: ${{ github.ref }}

- uses: actions/setup-node@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [1.0.2-alpha.2](https://github.com/TeamControlium/controlium-utils/compare/v1.0.2-alpha.1...v1.0.2-alpha.2) (2026-04-09)


### Bug Fixes

* PR Comments; Added ability for remote mocks ([af12e48](https://github.com/TeamControlium/controlium-utils/commit/af12e48389abe48a5724a0fc897e2cc679c352e3))
* Properly track remote branch ([2ecb728](https://github.com/TeamControlium/controlium-utils/commit/2ecb728a24a04c30344687847e32e9e2bd524a27))
* Revert back to npm tokens until Semantic release catchup ([9354f5e](https://github.com/TeamControlium/controlium-utils/commit/9354f5e0acf3e56c0c1a4bde3c18fdb297fab338))

## [1.0.2-alpha.1](https://github.com/TeamControlium/controlium-utils/compare/v1.0.1...v1.0.2-alpha.1) (2026-04-01)


### Bug Fixes

* Trivial update to force alpha release ([da295d0](https://github.com/TeamControlium/controlium-utils/commit/da295d073d7e21edacb4aef82e8ddee12cb86541))

## [1.0.1](https://github.com/TeamControlium/controlium-utils/compare/v1.0.0...v1.0.1) (2026-04-01)


Expand Down
264 changes: 138 additions & 126 deletions package-lock.json

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@controlium/utils",
"version": "1.0.1",
"version": "1.0.2-alpha.2",
"description": "Shared utilities for Controlium-based projects",
"type": "module",
"author": "Team Controllium contributors",
Expand Down Expand Up @@ -28,10 +28,10 @@
"scripts": {
"clean": "rm -rf dist coverage",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"test": "jest --silent --runInBand",
"test:debug": "jest --runInBand",
"test:debug": "jest --silent=false --runInBand --testMatch=**/mock.spec.ts",
"test:coverage": "jest --silent --coverage --runInBand",
"lint": "eslint 'src/**/*.ts' --fix",
"release": "semantic-release"
Expand Down Expand Up @@ -59,21 +59,21 @@
"ps-tree": "^1.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^8.0.0",
"jest": "^29.6.0",
"ts-jest": "^29.4.2",
"typescript": "^5.9.1",
"semantic-release": "^24.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0"
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public"
Expand All @@ -88,7 +88,12 @@
],
"rootDir": "src",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
"^.+\\.(t|j)s$": [
"ts-jest",
{
"tsconfig": "tsconfig.spec.json"
}
]
},
"transformIgnorePatterns": [],
"coverageDirectory": "../coverage",
Expand Down
Loading
Loading