Skip to content

Commit

Permalink
Remove Gulp / Used Webpack only / Restructure project files trees wit…
Browse files Browse the repository at this point in the history
…h specific examples folder
  • Loading branch information
Gouterman committed Feb 8, 2018
1 parent 785495c commit 7053c4c
Show file tree
Hide file tree
Showing 43 changed files with 35,802 additions and 316 deletions.
18 changes: 16 additions & 2 deletions .babelrc
@@ -1,4 +1,18 @@
{
"presets": ["es2015", "stage-0"],
"plugins": ["transform-runtime"]
"presets": [["env", {
"modules": false,
"loose": true
}],"es2015", "stage-0"],
"plugins": ["transform-runtime"],
"env": {
"production": {
"presets": [[
"minify",
{
"mangle": false,
"evaluate": false
}
]]
}
}
}
13 changes: 10 additions & 3 deletions .editorconfig
@@ -1,10 +1,17 @@
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[package.json]
indent_size = 2
22 changes: 21 additions & 1 deletion .eslintrc
@@ -1,10 +1,30 @@
{
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true
},
"extends": ["standard"],
"plugins": [
"html",
"dependencies"
],
"rules": {
// enable additional rules
"indent": [
"warn",
4
]
],
"dependencies/case-sensitive": 1,
"dependencies/no-cycles": 1,
"dependencies/require-json-ext": 1
},
"globals" : {
"DEVELOPMENT": false,
"PRODUCTION": false,
"ENVIRONMENT": false
}
}
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
/build
/doc
/examples/.cache

# Created by https://www.gitignore.io/api/npm,node

Expand Down
29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/copyright/adrien.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/copyright/rz.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/watcherTasks.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion examples/build/app-5bd07e2eae.js

This file was deleted.

File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 7053c4c

Please sign in to comment.