Skip to content

Commit

Permalink
fix(extension): include index.html in publish (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter authored Jan 2, 2025
1 parent 8312835 commit 9282f82
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "fix: include `index.html` in publish",
"packageName": "@griffel/devtools",
"email": "[email protected]",
"dependentChangeType": "patch"
}
1 change: 1 addition & 0 deletions packages/devtools/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"runtimeChunk": false,
"vendorChunk": false
},
"development": {}
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { composePlugins, withNx } = require('@nx/webpack');
const { composePlugins, withNx, withWeb } = require('@nx/webpack');

// Nx plugins for webpack.
module.exports = composePlugins(withNx(), config => {
module.exports = composePlugins(withNx(), withWeb(), config => {
// Note: This was added by an Nx migration. Webpack builds are required to have a corresponding Webpack config file.
// See: https://nx.dev/recipes/webpack/webpack-config-setup
return config;
Expand Down

0 comments on commit 9282f82

Please sign in to comment.