@companion-module/tools 1.4.2 → 1.4.4
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 +6 -6
- package/scripts/build.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.4](https://github.com/bitfocus/companion-module-tools/compare/v1.4.3...v1.4.4) (2024-02-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* yarn install failing due to `CI=1` ([076bc54](https://github.com/bitfocus/companion-module-tools/commit/076bc54a2031dfce414941007f60d6d100a129ec))
|
|
9
|
+
|
|
10
|
+
## [1.4.3](https://github.com/bitfocus/companion-module-tools/compare/v1.4.2...v1.4.3) (2024-02-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* touch lockfile before running `yarn install` in package. ([c502dd7](https://github.com/bitfocus/companion-module-tools/commit/c502dd7a4bc2e2156ebd6a339554fbfbb1ded83c))
|
|
16
|
+
|
|
3
17
|
## [1.4.2](https://github.com/bitfocus/companion-module-tools/compare/v1.4.1...v1.4.2) (2023-12-27)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@companion-module/tools",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
|
27
27
|
"@typescript-eslint/parser": "^5.59.9",
|
|
28
|
-
"eslint": "^8.
|
|
28
|
+
"eslint": "^8.56.0",
|
|
29
29
|
"eslint-config-prettier": "^8.8.0",
|
|
30
|
-
"eslint-plugin-n": "^16.
|
|
30
|
+
"eslint-plugin-n": "^16.6.2",
|
|
31
31
|
"eslint-plugin-prettier": "^4.2.1",
|
|
32
|
-
"find-up": "^
|
|
32
|
+
"find-up": "^7.0.0",
|
|
33
33
|
"parse-author": "^2.0.0",
|
|
34
34
|
"prettier": "^2.8.8",
|
|
35
|
-
"tar": "^6.
|
|
36
|
-
"webpack": "^5.
|
|
35
|
+
"tar": "^6.2.0",
|
|
36
|
+
"webpack": "^5.90.0",
|
|
37
37
|
"webpack-cli": "^5.1.4",
|
|
38
38
|
"zx": "^7.2.3"
|
|
39
39
|
},
|
package/scripts/build.js
CHANGED
|
@@ -160,7 +160,8 @@ await fs.writeFile('pkg/package.json', JSON.stringify(packageJson))
|
|
|
160
160
|
|
|
161
161
|
// If we found any depenendencies for the pkg, install them
|
|
162
162
|
if (Object.keys(packageJson.dependencies).length) {
|
|
163
|
-
await
|
|
163
|
+
await fs.writeFile('pkg/yarn.lock', '')
|
|
164
|
+
await $`yarn --cwd pkg install --no-immutable`
|
|
164
165
|
}
|
|
165
166
|
|
|
166
167
|
// Create tgz of the build
|