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
702 changes: 362 additions & 340 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jitar-plugins",
"private": true,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -12,7 +12,9 @@
"test": "npm run test --workspaces --if-present",
"review": "npm run review --workspaces",
"publish": "npm publish --workspaces",
"version": "npm version $VERSION --no-git-tag-version --workspaces --include-workspace-root=true"
"version": "npm version $VERSION --no-git-tag-version --workspaces --include-workspace-root=true",
"link": "npm run link --workspaces",
"link-deps": "npm link jitar @theshelf/authentication @theshelf/database @theshelf/eventbroker @theshelf/filestore @theshelf/http @theshelf/notification"
},
"workspaces": [
"packages/**/*"
Expand Down
6 changes: 4 additions & 2 deletions packages/authentication/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/authentication",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/authentication"
},
"files": [
"README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/database/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/database",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/database"
},
"files": [
"README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/eventbroker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/eventbroker",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/eventbroker"
},
"files": [
"README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/filestore/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/filestore",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/filestore"
},
"files": [
"README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/http",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/http"
},
"files": [
"README.md",
Expand Down
6 changes: 4 additions & 2 deletions packages/notification/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jitar-plugins/notification",
"private": false,
"version": "0.1.5",
"version": "0.1.6",
"type": "module",
"repository": {
"url": "git+https://github.com/MaskingTechnology/jitar-plugins.git"
Expand All @@ -11,7 +11,9 @@
"clean": "rimraf dist",
"lint": "eslint",
"review": "npm run build && npm run lint",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"link": "npm link",
"link-deps": "npm link jitar @theshelf/notification"
},
"files": [
"README.md",
Expand Down
Loading