matterbridge-test 0.0.4 → 0.0.6-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/create-release.js CHANGED
@@ -1,4 +1,17 @@
1
1
  /* eslint-disable no-console */
2
+
3
+ /*
4
+ Add the following scripts to package.json file:
5
+ "prepublishOnly": "npm run lint && npm run test && npm run cleanBuild",
6
+ "npmPublish": "npm publish",
7
+ "gitPublish": "npm run lint && npm run test && npm run cleanBuild && node create-release.js",
8
+ "preversion": "npm run lint && npm run test && npm run cleanBuild",
9
+ "postversion": "git push && git push --tags && node create-release.js",
10
+ "version:patch": "npm version patch",
11
+ "version:minor": "npm version minor",
12
+ "version:major": "npm version major",
13
+ */
14
+
2
15
  import { execSync } from 'child_process';
3
16
  import { readFileSync, writeFileSync, unlinkSync } from 'fs';
4
17
  import path from 'path';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-test",
3
- "version": "0.0.4",
3
+ "version": "0.0.6-dev.1",
4
4
  "description": "Matterbridge test plugin",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -51,10 +51,12 @@
51
51
  "cleanBuild": "npm run clean && tsc",
52
52
  "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
53
53
  "deepCleanRebuild": "npm run deepClean && npm install && npm run build",
54
- "prepublishOnly": "npm run lint && npm run test && npm run cleanBuild",
55
54
  "checkDependencies": "npx npm-check-updates",
56
55
  "updateDependencies": "npx npm-check-updates -u && npm install & npm run cleanBuild",
57
- "preversion": "npm run lint && npm run test && npm run build",
56
+ "prepublishOnly": "npm run lint && npm run test && npm run cleanBuild",
57
+ "npmPublish": "npm publish",
58
+ "gitPublish": "npm run lint && npm run test && npm run cleanBuild && node create-release.js",
59
+ "preversion": "npm run lint && npm run test && npm run cleanBuild",
58
60
  "postversion": "git push && git push --tags && node create-release.js",
59
61
  "version:patch": "npm version patch",
60
62
  "version:minor": "npm version minor",
@@ -79,8 +81,9 @@
79
81
  "@types/eslint__js": "^8.42.3",
80
82
  "@types/jest": "^29.5.12",
81
83
  "@types/node": "^22.5.1",
84
+ "eslint": "^9.9.1",
82
85
  "eslint-config-prettier": "^9.1.0",
83
- "eslint-plugin-jest": "^28.8.0",
86
+ "eslint-plugin-jest": "^28.8.1",
84
87
  "eslint-plugin-prettier": "^5.2.1",
85
88
  "install": "^0.13.0",
86
89
  "jest": "^29.7.0",
@@ -94,4 +97,4 @@
94
97
  "node-ansi-logger": "^3.0.0",
95
98
  "node-persist-manager": "^1.0.8"
96
99
  }
97
- }
100
+ }
package/release-notes.md DELETED
@@ -1,3 +0,0 @@
1
- Release notes for version 0.0.3
2
-
3
- ## [0.0.3] No changelog entry found for this version.