From 13d90b2d3137927811e5b4e0153b012a1d7b9c93 Mon Sep 17 00:00:00 2001 From: Logan Smyth Date: Mon, 27 Aug 2018 15:08:52 -0700 Subject: [PATCH] Prepare for 8.0.0 release. --- README.md | 8 ++++---- package.json | 5 +---- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f9ca8769..97bef899 100644 --- a/README.md +++ b/README.md @@ -22,16 +22,16 @@ __Notes:__ Issues with the output should be reported on the babel [issue tracker

Install

-> webpack 3.x | babel-loader 8.x | babel 7.x +> webpack 4.x | babel-loader 8.x | babel 7.x ```bash -npm install "babel-loader@^8.0.0-beta" @babel/core @babel/preset-env webpack +npm install babel-loader @babel/core @babel/preset-env webpack ``` -> webpack 3.x babel-loader 7.x | babel 6.x +> webpack 4.x | babel-loader 7.x | babel 6.x ```bash -npm install babel-loader babel-core babel-preset-env webpack +npm install babel-loader@7 babel-core babel-preset-env webpack ```

Usage

diff --git a/package.json b/package.json index 883d40ef..131ee398 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "util.promisify": "^1.0.0" }, "peerDependencies": { - "@babel/core": "^7.0.0 || ^7.0.0-rc || ^7.0.0-beta.41", + "@babel/core": "^7.0.0", "webpack": ">=2" }, "devDependencies": { @@ -53,9 +53,6 @@ "test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && yarn run test-only", "test-only": "nyc ava" }, - "publishConfig": { - "tag": "next" - }, "repository": { "type": "git", "url": "https://github.com/babel/babel-loader.git"