-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a2e764f
Showing
15 changed files
with
4,806 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Template file from [kickstart-skel](.kicker/KICKSTART_README.md) | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
insert_final_newline = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,php,ts,scss,css}] | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
|
||
|
||
# 4 space indentation | ||
[*.php] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
|
||
# Indentation override for all JS under lib directory | ||
[*.js] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.png binary | ||
*.jpg binary | ||
*.ico binary | ||
*.jpeg binary | ||
*.pdf binary | ||
*.ttf binary | ||
*.woff binary | ||
*.woff2 binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Publish Package to npmjs | ||
on: | ||
push: | ||
release: | ||
types: [created] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v3 | ||
|
||
with: | ||
node-version: '16.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
scope: "@leuffen" | ||
- run: npm install | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm publish --access public --tag testing | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.idea | ||
composer.lock | ||
/vendor/ | ||
libs/ | ||
/.sass-cache | ||
/node_modules | ||
/workspaces | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Kickstart container config file - see https://gitub.com/infracamp/kickstart | ||
# Run ./kickstart.sh to start a development-container for this project | ||
version: 1 | ||
from: "ghcr.io/nfra-project/kickstart-flavor-jekyll:2.0" | ||
ports: "80:80;4000:4000;4100:4100" | ||
|
||
command: | ||
build: | ||
- "jekyll build -s /opt/docs -d /var/www/html" | ||
|
||
run: | ||
|
||
jekyll: | | ||
jekyll serve -s /opt/docs -d /var/www/html --drafts --livereload --port 4000 --livereload-port 4100 --host 0.0.0.0 | ||
dev: | ||
- "killall webpack || echo 'No Proc'" | ||
- "D:kick jekyll" | ||
|
||
init-workspaces: | ||
- "mkdir -p workspaces" | ||
- "git -C ./workspaces/ clone [email protected]:dermatthes/leu-web-components.git" | ||
- "npm install" | ||
|
||
update: | ||
- "npm update" | ||
- "webpack build" | ||
|
||
killall: | ||
- killall jekyll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# LISCom - Leuffen Interactive Site Components | ||
|
||
Interactive Site Components manageed by pure CSS. | ||
|
||
|
||
## Contents | ||
|
||
- [Slideshow]() | ||
- [Details Title]() | ||
|
||
|
||
### Slideshow | ||
|
||
```html | ||
<div class="slideshow"> | ||
<img ...> | ||
<img ...> | ||
</div> | ||
``` | ||
|
||
### Details Title | ||
|
||
```html | ||
<p data-details-title="Title">Some text epanded if title was clicked</p> | ||
``` | ||
|
||
|
||
### Loader | ||
|
||
|
||
### Typewriter Element | ||
|
||
```html | ||
<typewriter-element | ||
data-write-speed="200" | ||
data-delete-speed="50" | ||
data-pause-before-delete="1000" | ||
data-pause-before-write="500"> | ||
Hallo,Welt,TypeScript,WebComponent | ||
</typewriter-element> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "src/loader/loader"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./src/index"; |
Oops, something went wrong.