@companion-module/tools 1.4.3 → 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 +7 -0
- package/package.json +1 -1
- package/scripts/build.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [1.4.3](https://github.com/bitfocus/companion-module-tools/compare/v1.4.2...v1.4.3) (2024-02-08)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/scripts/build.js
CHANGED
|
@@ -161,7 +161,7 @@ await fs.writeFile('pkg/package.json', JSON.stringify(packageJson))
|
|
|
161
161
|
// If we found any depenendencies for the pkg, install them
|
|
162
162
|
if (Object.keys(packageJson.dependencies).length) {
|
|
163
163
|
await fs.writeFile('pkg/yarn.lock', '')
|
|
164
|
-
await $`yarn --cwd pkg install`
|
|
164
|
+
await $`yarn --cwd pkg install --no-immutable`
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
// Create tgz of the build
|