@backstage/plugin-bitbucket-cloud-common 0.2.16-next.2 → 0.2.17-next.0

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 +15 -0
  2. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-bitbucket-cloud-common
2
2
 
3
+ ## 0.2.17-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/integration@1.9.1-next.0
9
+
10
+ ## 0.2.16
11
+
12
+ ### Patch Changes
13
+
14
+ - 2e6af00: Updated dependency `ts-morph` to `^21.0.0`.
15
+ - Updated dependencies
16
+ - @backstage/integration@1.9.0
17
+
3
18
  ## 0.2.16-next.2
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,50 +1,50 @@
1
1
  {
2
2
  "name": "@backstage/plugin-bitbucket-cloud-common",
3
+ "version": "0.2.17-next.0",
3
4
  "description": "Common functionalities for bitbucket-cloud plugins",
4
- "version": "0.2.16-next.2",
5
- "main": "dist/index.cjs.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "common-library"
7
+ },
8
8
  "publishConfig": {
9
9
  "access": "public",
10
10
  "main": "dist/index.cjs.js",
11
11
  "module": "dist/index.esm.js",
12
12
  "types": "dist/index.d.ts"
13
13
  },
14
- "backstage": {
15
- "role": "common-library"
16
- },
17
14
  "homepage": "https://backstage.io",
18
15
  "repository": {
19
16
  "type": "git",
20
17
  "url": "https://github.com/backstage/backstage",
21
18
  "directory": "plugins/bitbucket-cloud-common"
22
19
  },
20
+ "license": "Apache-2.0",
23
21
  "sideEffects": false,
22
+ "main": "dist/index.cjs.js",
23
+ "types": "dist/index.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
24
27
  "scripts": {
25
28
  "build": "backstage-cli package build",
26
- "lint": "backstage-cli package lint",
27
- "test": "backstage-cli package test",
28
29
  "clean": "backstage-cli package clean",
30
+ "generate-models": "scripts/generate-models.sh",
31
+ "lint": "backstage-cli package lint",
29
32
  "prepack": "backstage-cli package prepack",
30
33
  "postpack": "backstage-cli package postpack",
31
- "refresh-schema": "scripts/prepare-schema.js && yarn run -T prettier --check bitbucket-cloud.oas.json -w",
32
- "generate-models": "scripts/generate-models.sh",
33
34
  "reduce-models": "scripts/reduce-models.js",
35
+ "refresh-schema": "scripts/prepare-schema.js && yarn run -T prettier --check bitbucket-cloud.oas.json -w",
36
+ "test": "backstage-cli package test",
34
37
  "update-models": "yarn refresh-schema && yarn generate-models && yarn reduce-models"
35
38
  },
36
39
  "dependencies": {
37
- "@backstage/integration": "^1.9.0-next.1",
40
+ "@backstage/integration": "^1.9.1-next.0",
38
41
  "cross-fetch": "^4.0.0"
39
42
  },
40
43
  "devDependencies": {
41
- "@backstage/cli": "^0.25.2-next.3",
44
+ "@backstage/cli": "^0.25.3-next.0",
42
45
  "@openapitools/openapi-generator-cli": "^2.4.26",
43
46
  "msw": "^1.0.0",
44
47
  "ts-morph": "^21.0.0"
45
48
  },
46
- "files": [
47
- "dist"
48
- ],
49
49
  "module": "dist/index.esm.js"
50
50
  }