Skip to content

Commit c278a10

Browse files
committed
Initial commit
0 parents  commit c278a10

27 files changed

+9182
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = tab
9+
10+
[{*.txt,wp-config-sample.php}]
11+
end_of_line = crlf
12+
13+
[*.yml]
14+
indent_style = space
15+
indent_size = 2

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* text eol=lf
2+
*.gif -text
3+
*.ico -text
4+
*.jpg -text
5+
*.pdf -text
6+
*.png -text
7+
*.psd -text
8+
*.webp -text

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
Publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: 12
16+
registry-url: https://registry.npmjs.org/
17+
- run: yarn install
18+
- run: npm publish --access public
19+
env:
20+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Test
2+
3+
on: ['push', 'pull_request']
4+
5+
jobs:
6+
ESlint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Setup Node
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: '8'
15+
- name: ESlint
16+
run: |
17+
npm install
18+
npm run lint

.gitignore

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
### Project ###
2+
*.log
3+
/vendor/
4+
node_modules
5+
6+
### Windows ###
7+
# Windows image file caches
8+
Thumbs.db
9+
ehthumbs.db
10+
11+
# Folder config file
12+
Desktop.ini
13+
14+
# Recycle Bin used on file shares
15+
$RECYCLE.BIN/
16+
17+
# Windows Installer files
18+
*.cab
19+
*.msi
20+
*.msm
21+
*.msp
22+
23+
# Windows shortcuts
24+
*.lnk
25+
26+
27+
### macOS ###
28+
*.DS_Store
29+
.AppleDouble
30+
.LSOverride
31+
32+
# Icon must end with two \r
33+
Icon
34+
35+
36+
# Thumbnails
37+
._*
38+
39+
# Files that might appear in the root of a volume
40+
.DocumentRevisions-V100
41+
.fseventsd
42+
.Spotlight-V100
43+
.TemporaryItems
44+
.Trashes
45+
.VolumeIcon.icns
46+
.com.apple.timemachine.donotpresent
47+
48+
# Directories potentially created on remote AFP share
49+
.AppleDB
50+
.AppleDesktop
51+
Network Trash Folder
52+
Temporary Items
53+
.apdisk
54+
55+
56+
### Sass ###
57+
.sass-cache/
58+
*.css.map
59+
60+
61+
### SublimeText ###
62+
# cache files for sublime text
63+
*.tmlanguage.cache
64+
*.tmPreferences.cache
65+
*.stTheme.cache
66+
67+
# workspace files are user-specific
68+
*.sublime-workspace
69+
.vscode
70+
71+
# project files should be checked into the repository, unless a significant
72+
# proportion of contributors will probably not be using SublimeText
73+
# *.sublime-project
74+
75+
# sftp configuration file
76+
sftp-config.json
77+
78+
# postcss sorting config file
79+
settings.json
80+
81+
# Package control specific files
82+
Package Control.last-run
83+
Package Control.ca-list
84+
Package Control.ca-bundle
85+
Package Control.system-ca-bundle
86+
Package Control.cache/
87+
Package Control.ca-certs/
88+
bh_unicode_properties.cache
89+
90+
# Sublime-github package stores a github token in this file
91+
# https://packagecontrol.io/packages/sublime-github
92+
GitHub.sublime-settings
93+
94+
95+
### Vim ###
96+
# swap
97+
[._]*.s[a-w][a-z]
98+
[._]s[a-w][a-z]
99+
# session
100+
Session.vim
101+
# temporary
102+
.netrwhist
103+
*~
104+
# auto-generated tag files
105+
tags

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.github
2+
.editorconfig
3+
.gitattributes

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
## [1.0.0] - 27.01.2020
5+
6+
Initial release

0 commit comments

Comments
 (0)