Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-foxglove-extension",
"version": "1.0.5",
"version": "1.0.6",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

future FYI - we don't bump versions on feature PRs. We do that separately so that no one feature PR decides the version bump.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, my bad 👍🏻

"publisher": "foxglove",
"description": "Create and package Foxglove extensions",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export async function buildCommand(options: BuildOptions = {}): Promise<void> {
function getErrorOutput(compilation: webpack.Compilation): string {
const warnings = compilation
.getWarnings()
.map((warning) => String(warning.message))
.map((warning) => warning.message)
.join("\n");
const errors = compilation
.getErrors()
.map((error) => String(error.message))
.map((error) => error.message)
.join("\n");
let output = "";
if (warnings.length > 0) {
Expand Down
4 changes: 4 additions & 0 deletions src/webpackConfigExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ export default (
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.wasm$/i,
type: "asset/inline",
},
],
},
plugins: [new CleanWebpackPlugin()],
Expand Down
Loading
Loading