@atlassian/wrm-troubleshooting 0.7.7 → 0.7.8
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 +9 -0
- package/dist/globWithOptions.js +2 -2
- package/dist/globWithOptions.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## <small>0.7.8 (2026-04-09)</small>
|
|
7
|
+
|
|
8
|
+
* chore: align all versions of webpack in use ([c258aac](https://bitbucket.org/atlassianlabs/fe-server/commits/c258aac))
|
|
9
|
+
* chore: fix used types (due to package update) ([96553c8](https://bitbucket.org/atlassianlabs/fe-server/commits/96553c8))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## <small>0.7.7 (2026-02-23)</small>
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @atlassian/wrm-troubleshooting
|
package/dist/globWithOptions.js
CHANGED
|
@@ -6,12 +6,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.globWithOptions = globWithOptions;
|
|
7
7
|
const glob_promise_1 = __importDefault(require("glob-promise"));
|
|
8
8
|
const DEFAULT_IGNORED = ['**/node_modules/**', '**/target/**', '**/dist/**'];
|
|
9
|
-
async function globWithOptions(pattern, options
|
|
9
|
+
async function globWithOptions(pattern, options) {
|
|
10
10
|
return (0, glob_promise_1.default)(pattern, {
|
|
11
11
|
nodir: true,
|
|
12
12
|
ignore: DEFAULT_IGNORED,
|
|
13
13
|
absolute: true,
|
|
14
|
-
...options,
|
|
14
|
+
...(options ?? {}),
|
|
15
15
|
});
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=globWithOptions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globWithOptions.js","sourceRoot":"","sources":["../src/globWithOptions.ts"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"globWithOptions.js","sourceRoot":"","sources":["../src/globWithOptions.ts"],"names":[],"mappings":";;;;;AAQA,0CAOC;AAfD,gEAAgC;AAEhC,MAAM,eAAe,GAAG,CAAC,oBAAoB,EAAE,cAAc,EAAE,YAAY,CAAC,CAAC;AAMtE,KAAK,UAAU,eAAe,CAAC,OAAe,EAAE,OAAqB;IAC1E,OAAO,IAAA,sBAAI,EAAC,OAAO,EAAE;QACnB,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,eAAe;QACvB,QAAQ,EAAE,IAAI;QACd,GAAG,CAAC,OAAO,IAAI,EAAE,CAAC;KACnB,CAAC,CAAC;AACL,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlassian/wrm-troubleshooting",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
4
4
|
"author": "Atlassian Pty Ltd.",
|
|
5
5
|
"description": "A tool that can help you with troubleshooting the configuration of webpack and Atlassian P2 project.",
|
|
6
6
|
"keywords": [
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"yargs": "17.2.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@atlassian/webresource-webpack-plugin": "^7.1.
|
|
70
|
+
"@atlassian/webresource-webpack-plugin": "^7.1.7",
|
|
71
71
|
"@types/concat-stream": "2.0.3",
|
|
72
72
|
"@types/glob": "7.2.0",
|
|
73
73
|
"@types/inquirer": "8.2.12",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
"jest": "30.2.0",
|
|
87
87
|
"mock-http-server": "1.4.5",
|
|
88
88
|
"typescript": "5.9.3",
|
|
89
|
-
"webpack": "5.
|
|
89
|
+
"webpack": "5.105.2",
|
|
90
90
|
"webpack-cli": "4.10.0"
|
|
91
91
|
},
|
|
92
92
|
"//comment": "Everything should be bumped to 14+, but don't want to do it with this PR",
|
|
93
93
|
"engines": {
|
|
94
94
|
"node": ">=12.0.0"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "7d591c8de01b67345c2632277440b43788089d9c"
|
|
97
97
|
}
|