Removed index.js stub from packages/babel-core (#6474)

* Removed index.js stub from packages/babel-core

Added "main":"./lib/index.js" entry to package.json to replace index.js in packages/babel-core

* Fix indentation of new main.
This commit is contained in:
Zachary Sang 2017-10-16 11:52:56 -04:00 committed by Logan Smyth
parent 58da50aace
commit 98621a6901
2 changed files with 1 additions and 1 deletions

View File

@ -1 +0,0 @@
module.exports = require("./lib/index.js");

View File

@ -2,6 +2,7 @@
"name": "babel-core", "name": "babel-core",
"version": "7.0.0-beta.3", "version": "7.0.0-beta.3",
"description": "Babel compiler core.", "description": "Babel compiler core.",
"main": "./lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
"license": "MIT", "license": "MIT",