@companion-module/tools 1.5.0 → 1.5.2
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 +14 -0
- package/package.json +9 -8
- package/scripts/build.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.2](https://github.com/bitfocus/companion-module-tools/compare/v1.5.1...v1.5.2) (2026-01-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update vulnerable dependencies ([cfc458d](https://github.com/bitfocus/companion-module-tools/commit/cfc458dc14311b433d64eef0a2094d7237355ac7))
|
|
9
|
+
|
|
10
|
+
## [1.5.1](https://github.com/bitfocus/companion-module-tools/compare/v1.5.0...v1.5.1) (2024-06-20)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* don't expand `extraFiles` directories when copying ([6ad1d43](https://github.com/bitfocus/companion-module-tools/commit/6ad1d43f6a83fa44ea2014fbe357f0ab1687ea0f))
|
|
16
|
+
|
|
3
17
|
## [1.5.0](https://github.com/bitfocus/companion-module-tools/compare/v1.4.4...v1.5.0) (2024-02-08)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@companion-module/tools",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,19 +25,20 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
|
27
27
|
"@typescript-eslint/parser": "^5.59.9",
|
|
28
|
-
"eslint": "^8.
|
|
29
|
-
"eslint-config-prettier": "^8.
|
|
28
|
+
"eslint": "^8.57.1",
|
|
29
|
+
"eslint-config-prettier": "^8.10.2",
|
|
30
30
|
"eslint-plugin-n": "^16.6.2",
|
|
31
|
-
"eslint-plugin-prettier": "^4.2.
|
|
31
|
+
"eslint-plugin-prettier": "^4.2.5",
|
|
32
32
|
"find-up": "^7.0.0",
|
|
33
33
|
"parse-author": "^2.0.0",
|
|
34
34
|
"prettier": "^2.8.8",
|
|
35
|
-
"tar": "^
|
|
36
|
-
"webpack": "^5.
|
|
35
|
+
"tar": "^7.5.7",
|
|
36
|
+
"webpack": "^5.104.1",
|
|
37
37
|
"webpack-cli": "^5.1.4",
|
|
38
|
-
"zx": "^7.2.
|
|
38
|
+
"zx": "^7.2.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@companion-module/base": "^1.4.1"
|
|
42
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
43
44
|
}
|
package/scripts/build.js
CHANGED
|
@@ -121,7 +121,11 @@ if (fs.existsSync(webpackExtPath)) {
|
|
|
121
121
|
|
|
122
122
|
// copy extra files
|
|
123
123
|
if (Array.isArray(webpackExt.extraFiles)) {
|
|
124
|
-
const files = await globby(webpackExt.extraFiles
|
|
124
|
+
const files = await globby(webpackExt.extraFiles, {
|
|
125
|
+
expandDirectories: false,
|
|
126
|
+
onlyFiles: false,
|
|
127
|
+
})
|
|
128
|
+
|
|
125
129
|
for (const file of files) {
|
|
126
130
|
await fs.copy(file, path.join('pkg', path.basename(file)), {
|
|
127
131
|
overwrite: false,
|