@backstage/plugin-scaffolder-node-test-utils 0.0.0-nightly-20240306021012 → 0.0.0-nightly-20240308020958

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 +6 -5
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @backstage/plugin-scaffolder-node-test-utils
2
2
 
3
- ## 0.0.0-nightly-20240306021012
3
+ ## 0.0.0-nightly-20240308020958
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -11,13 +11,14 @@
11
11
  ### Patch Changes
12
12
 
13
13
  - aa543c9: Add an initiator credentials getter to the default mock context.
14
+ - 563dfd0: Fix issue with package bundling, should be `dist/index.cjs.js` instead of `dist/index.esm.js`.
14
15
  - bbd1fe1: Made "checkpoint" on scaffolder action context non-optional
15
16
  - Updated dependencies
16
- - @backstage/backend-test-utils@0.0.0-nightly-20240306021012
17
- - @backstage/backend-common@0.0.0-nightly-20240306021012
18
- - @backstage/plugin-scaffolder-node@0.0.0-nightly-20240306021012
17
+ - @backstage/backend-test-utils@0.0.0-nightly-20240308020958
18
+ - @backstage/backend-common@0.0.0-nightly-20240308020958
19
+ - @backstage/plugin-scaffolder-node@0.0.0-nightly-20240308020958
19
20
  - @backstage/types@1.1.1
20
- - @backstage/plugin-scaffolder-common@0.0.0-nightly-20240306021012
21
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-20240308020958
21
22
 
22
23
  ## 0.1.0-next.1
23
24
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node-test-utils",
3
- "version": "0.0.0-nightly-20240306021012",
3
+ "version": "0.0.0-nightly-20240308020958",
4
4
  "backstage": {
5
5
  "role": "node-library"
6
6
  },
7
7
  "publishConfig": {
8
8
  "access": "public",
9
- "main": "dist/index.esm.js",
9
+ "main": "dist/index.cjs.js",
10
10
  "types": "dist/index.d.ts"
11
11
  },
12
12
  "repository": {
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "sideEffects": false,
19
- "main": "dist/index.esm.js",
19
+ "main": "dist/index.cjs.js",
20
20
  "types": "dist/index.d.ts",
21
21
  "files": [
22
22
  "dist"
@@ -31,15 +31,15 @@
31
31
  "test": "backstage-cli package test"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/backend-common": "^0.0.0-nightly-20240306021012",
35
- "@backstage/backend-test-utils": "^0.0.0-nightly-20240306021012",
36
- "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20240306021012",
37
- "@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20240306021012",
34
+ "@backstage/backend-common": "^0.0.0-nightly-20240308020958",
35
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20240308020958",
36
+ "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20240308020958",
37
+ "@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20240308020958",
38
38
  "@backstage/types": "^1.1.1",
39
39
  "winston": "^3.2.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@backstage/cli": "^0.0.0-nightly-20240306021012",
42
+ "@backstage/cli": "^0.0.0-nightly-20240308020958",
43
43
  "@testing-library/jest-dom": "^6.0.0",
44
44
  "@types/react": "*"
45
45
  }