We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 66aab23Copy full SHA for 66aab23
.editorconfig
@@ -0,0 +1,29 @@
1
+# EditorConfig helps developers define and maintain consistent
2
+# coding styles between different editors and IDEs
3
+# editorconfig.org
4
+
5
+root = true
6
7
8
+[*]
9
10
+# Change these settings to your own preference
11
+indent_style = space
12
+indent_size = 2
13
14
+# We recommend you to keep these unchanged
15
+end_of_line = lf
16
+charset = utf-8
17
+trim_trailing_whitespace = true
18
+insert_final_newline = true
19
20
+[*.md]
21
+trim_trailing_whitespace = false
22
23
+[*.json]
24
25
26
+[*.{html,js,md}]
27
+block_comment_start = /**
28
+block_comment = *
29
+block_comment_end = */
.github/workflows/continuous-deployment.yml
@@ -0,0 +1,14 @@
+name: Continuous Deployment
+on:
+ push:
+ branches:
+ - main
+jobs:
+ ci-cd:
+ permissions:
+ contents: write
+ pull-requests: write
+ uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/continuous-deployment.yml@main
+ secrets:
+ gh_token: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/release-please.yml
@@ -0,0 +1,17 @@
+name: Release Please
+ release:
+ issues: write
+ id-token: write
+ uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/release-please.yml@main
+ npm_token: ${{ secrets.NPM_TOKEN }}
.github/workflows/test.yml
@@ -0,0 +1,12 @@
+name: Unit Tests
+ test:
+ uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/unit-tests.yml@main
.gitignore
@@ -0,0 +1,13 @@
+node_modules
+*.tsbuildinfo
+## editors
+/.idea
+/.vscode
+## build artifacts
+dist
+coverage
+doc
.husky/commit-msg
@@ -0,0 +1 @@
+npx --no -- commitlint --edit $1
.husky/pre-commit
+npx lint-staged
.release-please-manifest.json
+{ ".": "0.0.0" }
demo/assets/de-BadDkCzR.js
demo/index.html
+<html><head><title>oscd-template-menu demo</title><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&family=Roboto:wght@300;400;500&display=swap"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Symbols+Outlined&display=block"></head><body><oscd-shell></oscd-shell><style>*{--oscd-theme-text-font:'Roboto';--oscd-theme-icon-font:'Material Symbols Outlined';margin:0;padding:0}abbr{text-decoration:none;border-bottom:none}</style><script type="module" src="./inline-module-de7882cbb3fda1a32685e9cb5006df5d.js"></script></body></html>
0 commit comments