From 214882b3b2d4353b2f7225a2b90071a50b68b138 Mon Sep 17 00:00:00 2001 From: Mike Heddes Date: Fri, 18 Jan 2019 13:45:36 +0100 Subject: [PATCH] Add js extention to helper file (#296) --- src/constants.js | 2 +- test/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.js b/src/constants.js index 8a092bd..76122ae 100644 --- a/src/constants.js +++ b/src/constants.js @@ -4,4 +4,4 @@ export const EXTERNAL = {}; // NOTE: DO NOT REMOVE the null character `\0` as it may be used by other plugins // e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74 -export const HELPERS = '\0rollupPluginBabelHelpers'; +export const HELPERS = '\0rollupPluginBabelHelpers.js'; diff --git a/test/test.js b/test/test.js index fde28c9..8cad19e 100644 --- a/test/test.js +++ b/test/test.js @@ -6,7 +6,7 @@ var jsonPlugin = require('rollup-plugin-json'); var babelPlugin = require('..'); // from ./src/constants -var HELPERS = '\0rollupPluginBabelHelpers'; +var HELPERS = '\0rollupPluginBabelHelpers.js'; require('source-map-support').install();