Skip to content

Commit

Permalink
fix: clean up build to include index.min.js #193
Browse files Browse the repository at this point in the history
  • Loading branch information
rmenner committed Oct 10, 2024
1 parent cea1719 commit c294d47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

RuntimeUtils.default.prototype.registerComponent('custom-combobox', AuroCombobox);

import { initExamples } from "./index.js"
import { initExamples } from "./index.min.js"

initExamples();
</script>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@
"web components"
],
"scripts": {
"build": "npm-run-all build:sass sass:render types",
"build": "npm-run-all build:sass sass:render build:api build:docs bundler types",
"build:test": "npm-run-all test linters",
"build:release": "npm-run-all build:version build build:test build:api build:docs bundler postinstall",
"build:release": "npm-run-all build:version build build:test postinstall",
"build:ci": "npm-run-all sweep build:release",
"build:api": "wca analyze 'src/auro-combobox.js' --outFiles docs/api.md",
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render",
Expand All @@ -149,7 +149,7 @@
"build:sass:demo": "sass --no-source-map demo:demo",
"build:sass:component": "for file in src/*.scss; do npx sass --no-source-map \"$file:${file%.scss}.css\"; done",
"build:version": "node scripts/version.mjs",
"build:watch": "nodemon -e scss,js,html --watch src --watch apiExamples --exec npm run build:dev:assets",
"build:watch": "nodemon -e scss,js,html --watch src --watch apiExamples --exec npm run build",
"bundler": "rollup -c",
"bundler:test": "rollup -c -w",
"scssLint": "stylelint \"./src/**/*.scss\"",
Expand Down

0 comments on commit c294d47

Please sign in to comment.