playroom 0.34.1 → 0.34.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # playroom
2
2
 
3
+ ## 0.34.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 88bd204: Fix `playroom build` by making favicon path relative to webpack config
8
+
3
9
  ## 0.34.1
4
10
 
5
11
  ### Patch Changes
@@ -167,7 +167,7 @@ module.exports = async (playroomConfig, options) => {
167
167
  chunksSortMode: 'none',
168
168
  chunks: ['index'],
169
169
  filename: 'index.html',
170
- favicon: 'images/favicon.png',
170
+ favicon: path.join(__dirname, '../images/favicon.png'),
171
171
  base: playroomConfig.baseUrl,
172
172
  }),
173
173
  new HtmlWebpackPlugin({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playroom",
3
- "version": "0.34.1",
3
+ "version": "0.34.2",
4
4
  "description": "Design with code, powered by your own component library",
5
5
  "main": "utils/index.js",
6
6
  "types": "utils/index.d.ts",