@backstage/plugin-scaffolder-common 1.4.1-next.1 → 1.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-scaffolder-common
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
8
+ - Updated dependencies
9
+ - @backstage/catalog-model@1.4.2
10
+ - @backstage/plugin-permission-common@0.7.8
11
+ - @backstage/types@1.1.1
12
+
13
+ ## 1.4.1-next.2
14
+
15
+ ### Patch Changes
16
+
17
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
18
+ - Updated dependencies
19
+ - @backstage/catalog-model@1.4.2-next.2
20
+ - @backstage/plugin-permission-common@0.7.8-next.2
21
+ - @backstage/types@1.1.1-next.0
22
+
3
23
  ## 1.4.1-next.1
4
24
 
5
25
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-common",
3
- "version": "1.4.1-next.1",
3
+ "version": "1.4.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-common",
3
3
  "description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
4
- "version": "1.4.1-next.1",
5
- "main": "dist/index.cjs.js",
6
- "types": "dist/index.d.ts",
4
+ "version": "1.4.1",
5
+ "main": "./dist/index.cjs.js",
6
+ "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
8
8
  "publishConfig": {
9
- "access": "public",
10
- "main": "dist/index.cjs.js",
11
- "module": "dist/index.esm.js",
12
- "types": "dist/index.d.ts"
9
+ "access": "public"
13
10
  },
14
11
  "exports": {
15
12
  ".": {
@@ -42,6 +39,7 @@
42
39
  "dist",
43
40
  "alpha"
44
41
  ],
42
+ "sideEffects": false,
45
43
  "scripts": {
46
44
  "build": "backstage-cli package build",
47
45
  "lint": "backstage-cli package lint",
@@ -54,12 +52,12 @@
54
52
  "url": "https://github.com/backstage/backstage/issues"
55
53
  },
56
54
  "dependencies": {
57
- "@backstage/catalog-model": "^1.4.2-next.1",
58
- "@backstage/plugin-permission-common": "^0.7.8-next.1",
59
- "@backstage/types": "^1.1.0"
55
+ "@backstage/catalog-model": "^1.4.2",
56
+ "@backstage/plugin-permission-common": "^0.7.8",
57
+ "@backstage/types": "^1.1.1"
60
58
  },
61
59
  "devDependencies": {
62
- "@backstage/cli": "^0.22.13-next.2"
60
+ "@backstage/cli": "^0.22.13"
63
61
  },
64
- "module": "dist/index.esm.js"
62
+ "module": "./dist/index.esm.js"
65
63
  }