danger 12.2.0 → 12.2.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 +4 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -16,9 +16,12 @@
|
|
|
16
16
|
|
|
17
17
|
<!-- Your comment below this -->
|
|
18
18
|
|
|
19
|
-
|
|
20
19
|
<!-- Your comment above this -->
|
|
21
20
|
|
|
21
|
+
## 12.3.0
|
|
22
|
+
|
|
23
|
+
- Use node 18 for pre-built versions of danger (used by Danger Swift / Kotlin et al) - [@heltoft]
|
|
24
|
+
|
|
22
25
|
## 12.2.0
|
|
23
26
|
|
|
24
27
|
- Adds a log when you run on GitHub Actions without being a pull_request - [@orta]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "danger",
|
|
3
|
-
"version": "12.2.
|
|
3
|
+
"version": "12.2.1",
|
|
4
4
|
"description": "Unit tests for Team Culture",
|
|
5
5
|
"main": "distribution/danger.js",
|
|
6
6
|
"typings": "distribution/danger.d.ts",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"build:watch": "tsc -w",
|
|
67
67
|
"link": "yarn run build && chmod +x distribution/commands/danger.js && yarn link",
|
|
68
68
|
"package": "yarn run pkg . --output brew-distribution/danger; zip -j brew-distribution/danger-macos.zip brew-distribution/danger; shasum -a 256 brew-distribution/danger-macos.zip",
|
|
69
|
-
"package:x64": "yarn run pkg . --output brew-distribution/danger-x64 --targets
|
|
70
|
-
"package:arm64": "yarn run pkg . --output brew-distribution/danger-arm64 --targets
|
|
69
|
+
"package:x64": "yarn run pkg . --output brew-distribution/danger-x64 --targets node18-macos-x64; zip -j brew-distribution/danger-macos-x64.zip brew-distribution/danger-x64; shasum -a 256 brew-distribution/danger-macos-x64.zip",
|
|
70
|
+
"package:arm64": "yarn run pkg . --output brew-distribution/danger-arm64 --targets node18-macos-arm64; zip -j brew-distribution/danger-macos-arm64.zip brew-distribution/danger-arm64; shasum -a 256 brew-distribution/danger-macos-arm64.zip",
|
|
71
71
|
"declarations": "ts-node ./scripts/create-danger-dts.ts",
|
|
72
72
|
"docs:cp_defs": "mkdir docs/docs_generate; cp source/danger.d.ts docs/docs_generate; cp node_modules/@octokit/rest/index.d.ts docs/docs_generate/github.d.ts",
|
|
73
73
|
"docs": "yarn run docs:cp_defs; yarn typedoc --ignoreCompilerErrors --mode modules --json docs/js_ref_dsl_docs.json --includeDeclarations source",
|