Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Node CI

on: push

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [created]

permissions:
contents: read

jobs:
publish-npm:
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions custom-elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
{
"kind": "variable",
"name": "TabContainerChangeEvent",
"default": "_TabContainerChangeEvent"
"default": "class extends Event {\n static"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's happening here 👀

},
{
"kind": "variable",
"name": "TabContainerElement",
"default": "_TabContainerElement"
"default": "class extends HTMLElement {\n static"
},
{
"kind": "variable",
"name": "dist_default",
"name": "index_default",
"default": "TabContainerElement"
}
],
Expand All @@ -43,7 +43,7 @@
"kind": "js",
"name": "default",
"declaration": {
"name": "dist_default",
"name": "index_default",
"module": "dist/bundle.js"
}
}
Expand Down
Loading