Skip to content

Commit

Permalink
fix(version): remove version from DOM
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-capsule42 committed Jan 19, 2022
1 parent 2d3cf39 commit d91e614
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 19 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/testPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run version
- run: npm run sassBuild:component
- run: npm run postCss:component
- run: npm run sassRender
Expand All @@ -45,7 +44,6 @@ jobs:
with:
node-version: 14
- run: npm ci
- run: npm run version
- run: npm run sassBuild:component
- run: npm run postCss:component
- run: npm run sassRender
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
],
"scripts": {
"build": "npm run ciBuild",
"version": "node scripts/version.js",
"apiBuild": "wca analyze 'src/auro-button.js' --outFiles docs/api.md",
"bundler": "rollup -c",
"bundle:test": "rollup -c -w",
Expand Down
12 changes: 0 additions & 12 deletions scripts/version.js

This file was deleted.

1 change: 0 additions & 1 deletion src/auro-button-light.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ class AuroButtonLight extends LitElement {
name="${ifDefined(this.name ? this.name : undefined)}"
type="${ifDefined(this.type ? this.type : undefined)}"
.value="${ifDefined(this.value ? this.value : undefined)}"
@click="${() => {}}"
>
${ifDefined(this.svgIconLeft ? this.getIcon(this.svgIconLeft) : undefined)}
Expand Down
2 changes: 0 additions & 2 deletions src/auro-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import styleCss from "./style-css.js";
import styleCssFixed from './style-fixed-css.js';
import '@alaskaairux/auro-loader';
import { isFocusVisibleSupported, isFocusVisiblePolyfillAvailable } from './util';
import version from './version';

/**
* @attr {Boolean} fixed - uses px values instead of rem
Expand Down Expand Up @@ -157,7 +156,6 @@ class AuroButton extends LitElement {
type="${ifDefined(this.type ? this.type : undefined)}"
.value="${ifDefined(this.value ? this.value : undefined)}"
@click="${() => {}}"
version="${version}"
>
${ifDefined(this.svgIconLeft ? this.getIcon(this.svgIconLeft) : undefined)}
${ifDefined(this.loading ? html`<auro-loader pulse></auro-loader>` : undefined)}
Expand Down
1 change: 0 additions & 1 deletion src/version.js

This file was deleted.

0 comments on commit d91e614

Please sign in to comment.