@appland/scanner 1.76.2 → 1.76.3
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 +7 -0
- package/built/telemetry.js +1 -1
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@appland/scanner-v1.76.3](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.2...@appland/scanner-v1.76.3) (2023-02-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Include node entitlements during codesign ([f870eed](https://github.com/getappmap/appmap-js/commit/f870eed52907604b93ae5f049283243209ace1ba))
|
|
7
|
+
|
|
1
8
|
# [@appland/scanner-v1.76.2](https://github.com/getappmap/appmap-js/compare/@appland/scanner-v1.76.1...@appland/scanner-v1.76.2) (2023-02-22)
|
|
2
9
|
|
|
3
10
|
|
package/built/telemetry.js
CHANGED
|
@@ -281,7 +281,7 @@ class GitProperties {
|
|
|
281
281
|
return resolve(GitState.Ok);
|
|
282
282
|
}
|
|
283
283
|
});
|
|
284
|
-
commandProcess.on('error', () => GitState.NotInstalled);
|
|
284
|
+
commandProcess.on('error', () => resolve(GitState.NotInstalled));
|
|
285
285
|
}
|
|
286
286
|
catch (_a) {
|
|
287
287
|
resolve(GitState.NotInstalled);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appland/scanner",
|
|
3
|
-
"version": "1.76.
|
|
3
|
+
"version": "1.76.3",
|
|
4
4
|
"description": "Analyze AppMaps for code flaws",
|
|
5
5
|
"bin": "built/cli.js",
|
|
6
6
|
"files": [
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "node bin/preBuild.js && tsc -p tsconfig.build.json && yarn schema && yarn doc",
|
|
14
14
|
"build-native": "yarn build && ./bin/build-native",
|
|
15
|
-
"codesign": "${PROJECT_CWD}/bin/sign release/scanner-macos-x64 release/scanner-macos-arm64 && ${PROJECT_CWD}/bin/notarize release/scanner-macos-x64 release/scanner-macos-arm64",
|
|
16
15
|
"start": "ts-node src/cli.ts",
|
|
17
16
|
"doc": "ts-node ./bin/verify-rules-doc.ts && ts-node ./bin/verify-labels-doc.ts && ts-node ./bin/front-matter.ts",
|
|
18
17
|
"schema": "ts-node ./bin/schema.ts",
|