@mcoda/integrations 0.1.4 → 0.1.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,5 +3,5 @@
3
3
  ## Unreleased
4
4
  - Initial public packaging for @mcoda/integrations.
5
5
 
6
- ## 0.1.4
6
+ ## 0.1.7
7
7
  - Initial release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcoda/integrations",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "External integrations for mcoda (vcs, QA, telemetry).",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,11 +20,6 @@
20
20
  "CHANGELOG.md",
21
21
  "LICENSE"
22
22
  ],
23
- "scripts": {
24
- "build": "tsc -p tsconfig.json",
25
- "lint": "echo \"lint not configured\"",
26
- "test": "pnpm run build && node ../../scripts/run-node-tests.js dist"
27
- },
28
23
  "engines": {
29
24
  "node": ">=20"
30
25
  },
@@ -42,6 +37,11 @@
42
37
  "access": "public"
43
38
  },
44
39
  "dependencies": {
45
- "@mcoda/shared": "workspace:*"
40
+ "@mcoda/shared": "0.1.7"
41
+ },
42
+ "scripts": {
43
+ "build": "tsc -p tsconfig.json",
44
+ "lint": "echo \"lint not configured\"",
45
+ "test": "pnpm run build && node ../../scripts/run-node-tests.js dist"
46
46
  }
47
- }
47
+ }