@companion-module/tools 1.0.1 → 1.0.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 +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.0.2](https://github.com/bitfocus/companion-module-tools/compare/v1.0.1...v1.0.2) (2023-02-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* paths on windows in bash ([85f5438](https://github.com/bitfocus/companion-module-tools/commit/85f5438a57caf0328beb26b18ef55fcab2115665))
|
|
9
|
+
|
|
3
10
|
## [1.0.1](https://github.com/bitfocus/companion-module-tools/compare/v1.0.0...v1.0.1) (2023-02-17)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/scripts/build.js
CHANGED
|
@@ -31,7 +31,7 @@ console.log(`Framework path: ${frameworkDir}`)
|
|
|
31
31
|
await fs.remove('pkg')
|
|
32
32
|
|
|
33
33
|
// build the code
|
|
34
|
-
const webpackConfig = path.join(toolsDir, 'webpack.config.cjs')
|
|
34
|
+
const webpackConfig = path.join(toolsDir, 'webpack.config.cjs').replace(/\\/g, '/') // Fix slashes because windows is a pain
|
|
35
35
|
await $`yarn webpack -c ${webpackConfig}`
|
|
36
36
|
|
|
37
37
|
// copy in the metadata
|