Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Upgrade build tools. #24
Browse files Browse the repository at this point in the history
  • Loading branch information
budnix committed Feb 9, 2017
1 parent a368755 commit 10ebafb
Show file tree
Hide file tree
Showing 60 changed files with 3,729 additions and 20,320 deletions.
33 changes: 32 additions & 1 deletion .babelrc
@@ -1,3 +1,34 @@
{
"presets": ["es2015"]
"plugins": [
["transform-es2015-template-literals", { "loose": true }],
"transform-es2015-literals",
"transform-es2015-function-name",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
["transform-es2015-classes", { "loose": true }],
"transform-es2015-object-super",
"transform-es2015-shorthand-properties",
["transform-es2015-computed-properties", { "loose": true }],
["transform-es2015-for-of", { "loose": true }],
"transform-es2015-sticky-regex",
"transform-es2015-unicode-regex",
"check-es2015-constants",
["transform-es2015-spread", { "loose": true }],
"transform-es2015-parameters",
["transform-es2015-destructuring", { "loose": true }],
"transform-es2015-block-scoping",
"transform-object-rest-spread",
"transform-es3-member-expression-literals",
"transform-es3-property-literals"
],
"env": {
"commonjs": {
"plugins": [
["transform-es2015-modules-commonjs", { "loose": true }]
]
}
},
"ignore": [
"src/grammar-parser/grammar-parser.js"
]
}
1 change: 1 addition & 0 deletions .eslintignore
@@ -1 +1,2 @@
**/*{.,-}min.js
src/grammar-parser/grammar-parser.js
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,7 +1,11 @@
node_modules
coverage
*.tgz
*.log
.idea
tmp/
lib
es
coverage

dev.html
3 changes: 2 additions & 1 deletion .jscsrc
Expand Up @@ -72,5 +72,6 @@
"requireSemicolons": true,
"validateQuoteMarks": "'",
"validateIndentation": 2,
"disallowNotOperatorsInConditionals": true
"disallowNotOperatorsInConditionals": true,
"excludeFiles": ["src/grammar-parser/grammar-parser.js"]
}
1 change: 0 additions & 1 deletion .npmignore
Expand Up @@ -20,5 +20,4 @@ tmp
.DS_Store
*/.DS_Store
*/*/.DS_Store
lib-cov
dev.html

0 comments on commit 10ebafb

Please sign in to comment.