@paciolan/remote-module-loader 3.1.0 → 3.1.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/.husky/commit-msg +1 -0
- package/.husky/pre-commit +1 -0
- package/.husky/pre-push +1 -0
- package/dist/index.js +4 -15
- package/dist/index.js.map +1 -1
- package/dist/lib/createRequires.js +5 -5
- package/dist/lib/createRequires.js.map +1 -1
- package/dist/lib/loadRemoteModule.js +40 -44
- package/dist/lib/loadRemoteModule.js.map +1 -1
- package/dist/lib/memoize.d.ts +1 -1
- package/dist/lib/memoize.js +5 -5
- package/dist/lib/memoize.js.map +1 -1
- package/dist/lib/nodeFetcher.js +64 -45
- package/dist/lib/nodeFetcher.js.map +1 -1
- package/dist/lib/status.js +1 -1
- package/dist/lib/xmlHttpRequestFetcher/index.js +16 -18
- package/dist/lib/xmlHttpRequestFetcher/index.js.map +1 -1
- package/dist/lib/xmlHttpRequestFetcher/readyState.js +1 -1
- package/dist/models/index.js +1 -1
- package/eslint.config.mjs +39 -0
- package/gl-sast-report.json +4 -4
- package/gl-sbom-npm-npm.cdx.json +781 -1236
- package/gl-secret-detection-report.json +5 -5
- package/package.json +24 -30
- package/tsconfig.json +1 -0
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"version": "8.30.0"
|
|
20
20
|
},
|
|
21
21
|
"type": "secret_detection",
|
|
22
|
-
"start_time": "2026-04-
|
|
23
|
-
"end_time": "2026-04-
|
|
22
|
+
"start_time": "2026-04-03T22:48:31",
|
|
23
|
+
"end_time": "2026-04-03T22:48:32",
|
|
24
24
|
"status": "success",
|
|
25
25
|
"observability": {
|
|
26
26
|
"events": [
|
|
27
27
|
{
|
|
28
28
|
"event": "collect_secrets_analyzer_scan_metrics_from_pipeline",
|
|
29
|
-
"time_s":
|
|
29
|
+
"time_s": 0.740165239,
|
|
30
30
|
"exit_code": 0,
|
|
31
31
|
"git_strategy": "FetchNone",
|
|
32
|
-
"repo_size_kb":
|
|
33
|
-
"bytes_scanned":
|
|
32
|
+
"repo_size_kb": 963,
|
|
33
|
+
"bytes_scanned": 42974
|
|
34
34
|
}
|
|
35
35
|
]
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paciolan/remote-module-loader",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "Paciolan",
|
|
@@ -32,37 +32,31 @@
|
|
|
32
32
|
"test": "cross-env NODE_ENV=test jest",
|
|
33
33
|
"test:changed": "npm run test -- --changedSince HEAD",
|
|
34
34
|
"test:coverage": "npm run test -- --coverage",
|
|
35
|
-
"lint": "eslint . --fix"
|
|
35
|
+
"lint": "eslint . --fix",
|
|
36
|
+
"prepare": "husky"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@babel/cli": "^7.
|
|
39
|
-
"@babel/core": "^7.
|
|
40
|
-
"@babel/preset-env": "^7.
|
|
41
|
-
"@babel/preset-typescript": "^7.
|
|
42
|
-
"@commitlint/cli": "^
|
|
43
|
-
"@commitlint/config-conventional": "^
|
|
44
|
-
"@types/jest": "^
|
|
45
|
-
"@types/node": "^
|
|
46
|
-
"babel-loader": "^
|
|
47
|
-
"cross-env": "^
|
|
48
|
-
"eslint": "^
|
|
49
|
-
"eslint-config-prettier": "^
|
|
50
|
-
"eslint-plugin-prettier": "^
|
|
51
|
-
"git-cz": "^4.
|
|
52
|
-
"husky": "^
|
|
53
|
-
"jest": "^
|
|
54
|
-
"prettier": "^
|
|
55
|
-
"regenerator-runtime": "^0.
|
|
56
|
-
"rimraf": "^
|
|
57
|
-
"ts-jest": "^29.4.
|
|
58
|
-
"typescript": "^
|
|
59
|
-
},
|
|
60
|
-
"husky": {
|
|
61
|
-
"hooks": {
|
|
62
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
63
|
-
"pre-commit": "npm run lint && npm run build && npm run test:changed",
|
|
64
|
-
"pre-push": "npm run test:coverage"
|
|
65
|
-
}
|
|
39
|
+
"@babel/cli": "^7.28.6",
|
|
40
|
+
"@babel/core": "^7.29.0",
|
|
41
|
+
"@babel/preset-env": "^7.29.2",
|
|
42
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
43
|
+
"@commitlint/cli": "^20.5.0",
|
|
44
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
45
|
+
"@types/jest": "^30.0.0",
|
|
46
|
+
"@types/node": "^25.5.2",
|
|
47
|
+
"babel-loader": "^10.1.1",
|
|
48
|
+
"cross-env": "^10.1.0",
|
|
49
|
+
"eslint": "^10.2.0",
|
|
50
|
+
"eslint-config-prettier": "^10.1.8",
|
|
51
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
52
|
+
"git-cz": "^4.9.0",
|
|
53
|
+
"husky": "^9.1.7",
|
|
54
|
+
"jest": "^30.3.0",
|
|
55
|
+
"prettier": "^3.8.1",
|
|
56
|
+
"regenerator-runtime": "^0.14.1",
|
|
57
|
+
"rimraf": "^6.1.3",
|
|
58
|
+
"ts-jest": "^29.4.9",
|
|
59
|
+
"typescript": "^6.0.2"
|
|
66
60
|
},
|
|
67
61
|
"config": {
|
|
68
62
|
"commitizen": {
|