Skip to content

Commit

Permalink
fix: avoid dist artifacts in manifest generation (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjpillsbury committed May 3, 2024
1 parent 239c67e commit 3dc97ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"format": "prettier --write .",
"clean": "rimraf dist",
"lint": "eslint src/js",
"premanifest": "cp -R src/js/ dist/",
"premanifest": "mkdir -p dist/ && cp -R src/js/media-* dist/",
"manifest": "npx @custom-elements-manifest/analyzer analyze --config scripts/custom-elements-manifest.config.js",
"build:types": "tsc",
"build:esm": "esbuild \"src/js/**/*.*s*\" --target=es2019 --format=esm --outdir=dist",
Expand Down

0 comments on commit 3dc97ed

Please sign in to comment.