Skip to content

Commit

Permalink
fix: parcel error
Browse files Browse the repository at this point in the history
  • Loading branch information
aatmanvaidya committed Sep 4, 2023
1 parent 93eab95 commit 24c3914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browser-extension/plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"prepare": "cd ../.. && husky install \"browser-extension/plugin/.husky\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start:options": "parcel src/options.jsx",
"start:options": "parcel src/options.html",
"start:contentScript": "parcel src/content-script.js",
"moveBuildArtefactsToDistDir": "cp src/options.html dist && cp manifest.json dist && cp icon* dist && cp src/background.js dist",
"moveBuildArtefactsToFirefoxDistDir": "cp src/options.html dist && cp manifest.firefox.json dist/manifest.json && cp icon* dist && cp src/background.js dist",
Expand Down
2 changes: 1 addition & 1 deletion browser-extension/plugin/src/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
</head>
<body>
<div id="app"></div>
<script src="options.js"></script>
<script src="options.jsx" type="module"></script>
</body>
</html>

0 comments on commit 24c3914

Please sign in to comment.