Skip to content

Commit

Permalink
Mocha Chai Sinon
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencemedialimited committed Sep 11, 2019
1 parent aca4a77 commit 7403db2
Show file tree
Hide file tree
Showing 8 changed files with 2,111 additions and 252 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# EditorConfig is awesome: http://EditorConfig.org

root = true

[*]
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2

[*.{hbs,svg}]
indent_style = tab
indent_size = 4

[*.md]
trim_trailing_whitespace = false
51 changes: 29 additions & 22 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
module.exports = {
compact: true,
comments: false,
presets: [
[
'@babel/env', {
useBuiltIns: 'entry',
targets: {
node: 'current',
browsers: [
'last 2 versions'
]
},
corejs: 3
}
]
],
plugins: [
'@babel/proposal-export-default-from',
'@babel/proposal-class-properties'
]
}
module.exports = {
compact: true,
comments: false,
presets: [
[
'@babel/env', {
useBuiltIns: 'entry',
targets: {
node: 'current',
browsers: [
'last 2 versions'
]
},
corejs: 3
}
]
],
plugins: [
'@babel/proposal-export-default-from',
'@babel/proposal-class-properties',
[
'module-resolver', {
alias: {
'shinkansen-pantograph': './src'
}
}
]
]
}
2 changes: 1 addition & 1 deletion lib/pantograph/index.js

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

Loading

0 comments on commit 7403db2

Please sign in to comment.