Skip to content

Commit

Permalink
new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
seeden committed Nov 9, 2017
1 parent 15d9d5c commit d53a00b
Show file tree
Hide file tree
Showing 9 changed files with 7,365 additions and 45 deletions.
99 changes: 84 additions & 15 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,85 @@
{
"presets": [
["es2015", { "loose": true }],
"stage-0",
"react",
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}],
"transform-decorators-legacy",
"transform-class-properties",
"transform-proto-to-assign",
]
}
"env": {
"development": {
"presets": [
["babel-preset-env", {
"targets": {
"node": "6.10"
}
}],
"stage-0",
"react"
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}],
"transform-decorators",
"transform-class-properties"
]
},
"test": {
"presets": [
["babel-preset-env", {
"targets": {
"node": "6.10"
}
}],
"stage-0",
"react"
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}],
"transform-decorators",
"transform-class-properties"
]
},
"browser": {
"presets": [
["babel-preset-env", {
"targets": {
"browsers": "last 3 versions, > 1%"
},
"modules": false,
"loose": true
}],
"stage-0",
"react"
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}],
"transform-decorators-legacy",
"transform-class-properties",
"transform-proto-to-assign",
]
},
"module": {
"presets": [
["babel-preset-env", {
"targets": {
"node": "6.10"
},
"modules": false
}],
"stage-0",
"react"
],
"plugins": [
["transform-runtime", {
"polyfill": false,
"regenerator": true
}],
"transform-decorators",
"transform-class-properties"
]
}
},
"sourceMaps": true
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
coverage
dist
lib
module
node_modules
.DS_Store
8 changes: 0 additions & 8 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit d53a00b

Please sign in to comment.