Skip to content

Commit

Permalink
fix unused thingy
Browse files Browse the repository at this point in the history
  • Loading branch information
alicewriteswrongs committed May 23, 2022
1 parent e2317ca commit 68001be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean-scripts",
"clean-scripts": "rm -rf scripts/build",
"license": "node scripts --license",
"lint": "eslint src/*.ts src/**/*.ts src/**/*.tsx",
"lint": "eslint \"src/*.ts\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier \"./({bin,scripts,src,test}/**/*.{ts,tsx,js,jsx})|bin/stencil\"",
"prettier.dry-run": "npm run prettier.base -- --list-different",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ describe('Custom Elements output target', () => {
it('should set a diagnostic if no `dir` prop on the output target', async () => {
const { config, compilerCtx, buildCtx } = setup();
const outputTarget: OutputTargetDistCustomElements = { type: 'dist-custom-elements' };
const ret = await bundleCustomElements(config, compilerCtx, buildCtx, outputTarget);
await bundleCustomElements(config, compilerCtx, buildCtx, outputTarget);
expect(buildCtx.diagnostics).toEqual([
{
level: 'error',
Expand Down

0 comments on commit 68001be

Please sign in to comment.