Skip to content

Commit 30bccac

Browse files
committed
feat(build): replaced gulp with webpack 2
1 parent 1d0a617 commit 30bccac

38 files changed

Lines changed: 471 additions & 841 deletions

.babelrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
["es2015", "stage-2"]
4+
],
5+
"env": {
6+
"test": {
7+
"plugins": [
8+
["__coverage__", { "ignore": "*.spec.js" }]
9+
]
10+
}
11+
}
12+
}

.bootstraprc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# You can use comments here
3+
4+
bootstrapVersion: 4
5+
6+
styleLoaders:
7+
- style-loader
8+
- css-loader?sourceMap
9+
- postcss-loader?sourceMap
10+
- sass-loader?sourceMap
11+
12+
styles: true
13+
14+
scripts:
15+
collapse: true,
16+
util: true

.bowerrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
# Change these settings to your own preference
10+
indent_style = space
11+
indent_size = 2
12+
13+
# We recommend you to keep these unchanged
14+
end_of_line = lf
15+
charset = utf-8
16+
trim_trailing_whitespace = true
17+
insert_final_newline = true
18+
19+
[*.md]
20+
trim_trailing_whitespace = false

.gitignore

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
*.DS_Store
1+
dist/
2+
node_modules/
23
.sass-cache/
34
.vscode/
5+
*.DS_Store
46
npm-debug.log
5-
karma.conf.js
6-
build/
7-
dist/
8-
node_modules/
9-
vendor/
7+
yarn.lock

bower.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

config.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)