babel-helper-modules -> babel-helper-module-transforms since package taken [skip ci]

This commit is contained in:
Henry Zhu 2017-09-19 16:19:52 -04:00
parent 8597219ce5
commit 5b9112c794
14 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,5 @@
# babel-helper-module-transforms
## Usage
TODO

View File

@ -1,11 +1,11 @@
{
"name": "babel-helper-modules",
"name": "babel-helper-module-transforms",
"version": "7.0.0-beta.0",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-modules",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms",
"main": "lib/index.js",
"dependencies": {
"babel-template": "7.0.0-beta.0",

View File

@ -1,5 +0,0 @@
# babel-helper-modules
## Usage
TODO

View File

@ -6,7 +6,7 @@
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"babel-helper-modules": "7.0.0-beta.0",
"babel-helper-module-transforms": "7.0.0-beta.0",
"babel-template": "7.0.0-beta.0"
},
"keywords": [

View File

@ -6,7 +6,7 @@ import {
buildNamespaceInitStatements,
ensureStatementsHoisted,
wrapInterop,
} from "babel-helper-modules";
} from "babel-helper-module-transforms";
const buildWrapper = template(`
define(MODULE_NAME, AMD_ARGUMENTS, function(IMPORT_NAMES) {

View File

@ -6,7 +6,7 @@
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"babel-helper-modules": "7.0.0-beta.0",
"babel-helper-module-transforms": "7.0.0-beta.0",
"babel-types": "7.0.0-beta.0"
},
"keywords": [

View File

@ -4,7 +4,7 @@ import {
buildNamespaceInitStatements,
ensureStatementsHoisted,
wrapInterop,
} from "babel-helper-modules";
} from "babel-helper-module-transforms";
export default function({ types: t }) {
return {

View File

@ -6,7 +6,7 @@
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"babel-helper-modules": "7.0.0-beta.0",
"babel-helper-module-transforms": "7.0.0-beta.0",
"babel-template": "7.0.0-beta.0"
},
"keywords": [

View File

@ -7,7 +7,7 @@ import {
buildNamespaceInitStatements,
ensureStatementsHoisted,
wrapInterop,
} from "babel-helper-modules";
} from "babel-helper-module-transforms";
const buildPrerequisiteAssignment = template(`
GLOBAL_REFERENCE = GLOBAL_REFERENCE || {}