Skip to content

Commit 36b5fa9

Browse files
committed
facepalm v0.1.4
1 parent 039154c commit 36b5fa9

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
node-version: '20.x'
1515
registry-url: https://registry.npmjs.org/
1616
- run: npm ci
17-
- run: npm publish --provenance --access public
17+
- run: npm publish --access public
1818
env:
1919
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes
22

3-
## v0.1.3 - 2024-08-06
3+
## v0.1.4 - 2024-08-06
44

55
- FIX: Don't use ES modules for webC templates
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ Make sure you include the `<script>` in your project
7979
<!-- 3rd party CDN, not recommended for production use -->
8080
<script
8181
type="module"
82-
src="https://www.unpkg.com/@terriblemia/[email protected].3/index.js"
82+
src="https://www.unpkg.com/@terriblemia/[email protected].4/index.js"
8383
></script>
8484
```
8585

8686
```html
8787
<!-- 3rd party CDN, not recommended for production use -->
8888
<script
8989
type="module"
90-
src="https://esm.sh/@terriblemia/[email protected].3"
90+
src="https://esm.sh/@terriblemia/[email protected].4"
9191
></script>
9292
```
9393

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@terriblemia/ground-control",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A Web Component for user control of HTML attributes and CSS properties",
55
"main": "index.js",
66
"scripts": {

toggle-control-raw.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import GroundControl from "./ground-control.js";
2-
3-
export default class ToggleControl extends GroundControl {
1+
class ToggleControl extends GroundControl {
42
static register(tagName) {
53
if ('customElements' in window) {
64
customElements.define(

0 commit comments

Comments
 (0)