Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1375a43
make babelify first in transforms
hsab Jul 10, 2019
a2d7de1
eslint parse type = module
hsab Jul 10, 2019
07f315d
dumb import
hsab Jul 10, 2019
3d7f607
temp revert fs to require
hsab Jul 10, 2019
1c997cb
revert app.js to module.exports
hsab Jul 10, 2019
907ec78
fix opentype load()
hsab Jul 10, 2019
d898fc5
better constants import
hsab Jul 10, 2019
fff9f2d
use babel compiler for mochaTest
hsab Jul 10, 2019
bc61203
es6 export for constants
hsab Jul 10, 2019
7d1d26b
es6 export for helper.js
hsab Jul 10, 2019
dd34169
fix modeAdjust text suite : import helpers.js
hsab Jul 10, 2019
35c5433
import 'es6-promise/auto'
hsab Jul 10, 2019
0791e3b
import fileSaver from 'file-saver'
hsab Jul 10, 2019
b6d90c2
add devDep babel-plugin-static-fs
hsab Jul 10, 2019
361907e
change 'fs' to import (brfs purposes)
hsab Jul 10, 2019
28a12de
remove 'brfs' from browserify transforms
hsab Jul 10, 2019
fab5bfd
remove devDep 'brfs'
hsab Jul 10, 2019
0733e01
fix combineModules for import (instance mode not working yet)
hsab Jul 10, 2019
7ad6a4d
let/const transform
hsab Jul 10, 2019
c6329d7
arg-rest (...args) transform
hsab Jul 10, 2019
b4e4b1f
arg-spread (apply() --> ...args) transform
hsab Jul 10, 2019
70d7e54
obj-method transform
hsab Jul 10, 2019
9693c84
obj-shorthand (foo: foo, --> foo,) transform
hsab Jul 10, 2019
5c3b278
exponent transform
hsab Jul 10, 2019
7806a1a
Revert "exponent transform"
hsab Jul 10, 2019
694177b
arrow transform
hsab Jul 10, 2019
95274cb
arrow-return transform
hsab Jul 10, 2019
b429b3d
no-strict transform
hsab Jul 10, 2019
c97cc48
class (obj --> class) transform
hsab Jul 10, 2019
1fddcdf
template strings transform
hsab Jul 10, 2019
831cd97
Revert "template strings transform"
hsab Jul 10, 2019
b51a8a4
template strings transform
hsab Jul 10, 2019
e66ff6b
default-param transform
hsab Jul 10, 2019
49bf914
includes (indexOf --> includes) transform
hsab Jul 10, 2019
f57bd77
use let/const in all examples
hsab Jul 10, 2019
054f291
for-of transform
hsab Jul 10, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"extends": ["eslint:recommended", "prettier"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": 2017
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"prettier/prettier": ["error"],
Expand Down
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ module.exports = grunt => {
src: ['test/node/**/*.js'],
options: {
reporter: reporter,
require: '@babel/register',
ui: 'tdd'
}
}
Expand Down
Loading