Skip to content

Commit 9183fc1

Browse files
committed
Added build script and dependencies
1 parent d0906a7 commit 9183fc1

19 files changed

+3804
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
* text=auto
2+
3+
# enforce linux line endings
4+
*.md text eol=lf
5+
*.txt text eol=lf
6+
*.xml text eol=lf
7+
*.js text eol=lf
8+
*.json text eol=lf
9+
*.ts text eol=lf
10+
*.css text eol=lf
11+
*.scss text eol=lf
12+
*.sass text eol=lf
13+
*.html text eol=lf
14+
*.sh text eol=lf
15+
*.yml text eol=lf
16+
17+
# dotfiles configurations
18+
.* text eol=lf
19+
20+
# Graphics
21+
*.png binary
22+
*.jpg binary
23+
*.jpeg binary
24+
*.gif binary
25+
*.tif binary
26+
*.tiff binary
27+
*.ico binary
28+
# SVG treated as an asset (binary) by default. You can change it to text, if necessary
29+
*.svg binary
30+
*.eps binary
31+
32+
## FONTS
33+
*.ttf binary
34+
*.eot binary
35+
*.otf binary
36+
*.woff binary
37+
*.woff2 binary

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
6+
# dependencies
7+
/node_modules
8+
9+
# IDEs and editors
10+
/.idea/workspace.xml
11+
12+
# IDE - VSCode
13+
.vscode/*
14+
!.vscode/settings.json
15+
!.vscode/tasks.json
16+
!.vscode/launch.json
17+
!.vscode/extensions.json
18+
19+
# misc
20+
/.sass-cache
21+
*.log
22+
23+
# System Files
24+
.DS_Store
25+
Thumbs.db

.idea/composerJson.xml

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

.idea/dictionaries/Carlos.xml

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

.idea/encodings.xml

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

.idea/inspectionProfiles/Project_Default.xml

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

.idea/jsLibraryMappings.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

0 commit comments

Comments
 (0)