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
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Publish"

on:
workflow_dispatch:

permissions:
id-token: write
contents: read

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: ⚙️ Checkout Repository
uses: actions/checkout@v6

- name: 🛠️ Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24.x'
registry-url: 'https://registry.npmjs.org/'

- name: 📦 Install Dependencies
run: npm ci

- name: 🚀 Publish Packages
run: npm run publish

- name: ✅ Publish Complete
run: echo "Package published and tagged successfully."
295 changes: 66 additions & 229 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces --if-present",
"review": "npm run review --workspaces",
"publish": "npm publish --workspaces"
"publish": "npm publish --workspaces",
"version": "npm version $VERSION --no-git-tag-version --workspaces"
},
"workspaces": [
"packages/**/*"
Expand Down
11 changes: 7 additions & 4 deletions packages/authentication/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/authentication",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -15,11 +18,11 @@
"dist"
],
"exports": {
".": "./dist/server.js",
"./client": "./dist/client.js"
".": "./dist/server.js",
"./client": "./dist/client.js"
},
"peerDependencies": {
"@theshelf/authentication": "^0.0.3",
"@theshelf/authentication": "^0.0.4",
"jitar": "^0.10.3"
}
}
7 changes: 5 additions & 2 deletions packages/database/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/database",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -17,7 +20,7 @@
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"peerDependencies": {
"@theshelf/database": "^0.0.3",
"@theshelf/database": "^0.0.4",
"jitar": "^0.10.3"
}
}
7 changes: 5 additions & 2 deletions packages/eventbroker/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/eventbroker",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -17,7 +20,7 @@
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"peerDependencies": {
"@theshelf/eventbroker": "^0.0.3",
"@theshelf/eventbroker": "^0.0.4",
"jitar": "^0.10.3"
}
}
7 changes: 5 additions & 2 deletions packages/filestore/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/filestore",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -17,7 +20,7 @@
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"peerDependencies": {
"@theshelf/filestore": "^0.0.3",
"@theshelf/filestore": "^0.0.4",
"jitar": "^0.10.3"
}
}
7 changes: 5 additions & 2 deletions packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/http",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -17,7 +20,7 @@
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"peerDependencies": {
"@theshelf/validation": "^0.0.3",
"@theshelf/validation": "^0.0.4",
"jitar": "^0.10.3"
}
}
7 changes: 5 additions & 2 deletions packages/notification/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@jitar-plugins/notification",
"private": false,
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/jitar-plugins"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
Expand All @@ -17,7 +20,7 @@
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"peerDependencies": {
"@theshelf/notification": "^0.0.3",
"@theshelf/notification": "^0.0.4",
"jitar": "^0.10.3"
}
}