From 0cb88f8cce4ffa2a34566278aa349fc368317f9c Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 20 Feb 2018 15:27:35 +0100 Subject: [PATCH] Fix babel conversion --- remix-debugger/package.json | 52 +++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 13 deletions(-) diff --git a/remix-debugger/package.json b/remix-debugger/package.json index 954d339aea..86aad2b8a1 100644 --- a/remix-debugger/package.json +++ b/remix-debugger/package.json @@ -16,7 +16,11 @@ "devDependencies": { "babel-eslint": "^7.1.1", "babel-plugin-transform-object-assign": "^6.22.0", + "babel-plugin-yo-yoify": "^0.3.3", + "babel-polyfill": "^6.22.0", + "babel-preset-env": "^1.6.1", "babel-preset-es2015": "^6.24.0", + "babel-preset-stage-0": "^6.24.1", "babelify": "^7.3.0", "browserify": "^13.0.1", "browserify-livereload": "^1.0.10", @@ -85,34 +89,56 @@ "test/resources/*" ] }, + "babel": { + "plugins": [ + "transform-es2015-template-literals", + "transform-es2015-literals", + "transform-es2015-function-name", + "transform-es2015-arrow-functions", + "transform-es2015-block-scoped-functions", + "transform-es2015-classes", + "transform-es2015-object-super", + "transform-es2015-shorthand-properties", + "transform-es2015-duplicate-keys", + "transform-es2015-computed-properties", + "transform-es2015-for-of", + "transform-es2015-sticky-regex", + "transform-es2015-unicode-regex", + "check-es2015-constants", + "transform-es2015-spread", + "transform-es2015-parameters", + "transform-es2015-destructuring", + "transform-es2015-block-scoping", + "transform-object-assign" + ] + }, "browserify": { "transform": [ [ "babelify", { + "sourceMapsAbsolute": false, + "sourceMaps": true, "plugins": [ [ "fast-async", { - "runtimePatten": null, + "runtimePattern": null, "compiler": { - "promises": true, "es7": true, "noRuntime": true, + "promises": true, "wrapAwait": true } } ], - "transform-object-assign" - ] - } - ], - [ - "yo-yoify" - ], - [ - "babelify", - { + [ + "yo-yoify" + ], + [ + "transform-object-assign" + ] + ], "presets": [ "es2015" ] @@ -120,4 +146,4 @@ ] ] } -} +} \ No newline at end of file