Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Commit

Permalink
chore: remove @next
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Dec 8, 2018
1 parent 983aca0 commit 9499e6e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>
<br>

[![npm version](https://badgen.net/npm/v/poi)](https://npm.im/poi) [![npm version](https://badgen.net/npm/v/poi/next)](https://npm.im/poi) [![build status](https://badgen.net/circleci/github/egoist/poi/master)](https://circleci.com/gh/egoist/poi/tree/master) [![npm downloads](https://badgen.net/npm/dm/poi)](https://npm.im/poi) [![poi twitter](https://badgen.net/badge//@poi__js/1da1f2?icon=twitter)](https://twitter.com/poi__js)
[![npm version](https://badgen.net/npm/v/poi)](https://npm.im/poi) [![build status](https://badgen.net/circleci/github/egoist/poi/master)](https://circleci.com/gh/egoist/poi/tree/master) [![npm downloads](https://badgen.net/npm/dm/poi)](https://npm.im/poi) [![poi twitter](https://badgen.net/badge//@poi__js/1da1f2?icon=twitter)](https://twitter.com/poi__js)

Poi is a bundler built on the top of webpack, trying to make developing and bundling apps with webpack as easy as possible.

Expand All @@ -24,7 +24,7 @@ Before we get started, ensure that you have installed Node.js (>=8) and Yarn (or
### Get Started Immediately

```bash
yarn global add create-poi-app@next
yarn global add create-poi-app
create-poi-app my-app

cd my-app
Expand All @@ -40,7 +40,7 @@ Inside an empty project, run `yarn init` or `npm init` to create a `package.json

```bash
yarn init
yarn add poi@next --dev
yarn add poi --dev
```

Now all you need is to create an entry file, like if you're building a website, just create an `index.js`:
Expand Down
2 changes: 1 addition & 1 deletion create-poi-app/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Create Poi App

```bash
npm i -g create-poi-app@next
npm i -g create-poi-app

cpa my-app
```
10 changes: 5 additions & 5 deletions create-poi-app/generator/saofile.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ module.exports = {
)
},
devDependencies: {
poi: 'next',
'@poi/plugin-karma': when(unit === 'karma', 'next'),
poi: '^12.0.0',
'@poi/plugin-karma': when(unit === 'karma', '^12.0.0'),
eslint: when(useEslint, '^5.9.0'),
'eslint-config-xo': when(linterConfig === 'xo', '^0.25.0'),
'@poi/plugin-eslint': when(useEslint, 'next'),
'@poi/plugin-eslint': when(useEslint, '^12.0.0'),
typescript: when(typeChecker === 'ts', '^3.2.1'),
'@poi/plugin-typescript': when(typeChecker === 'ts', 'next'),
'@poi/plugin-pwa': when(features.includes('pwa'), 'next'),
'@poi/plugin-typescript': when(typeChecker === 'ts', '^12.0.0'),
'@poi/plugin-pwa': when(features.includes('pwa'), '^12.0.0'),
'register-service-worker': when(
features.includes('pwa'),
'^1.5.2'
Expand Down
2 changes: 1 addition & 1 deletion plugins/eslint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Use ESLint to lint JavaScript.
## Install

```bash
yarn add @poi/plugin-eslint@next --dev
yarn add @poi/plugin-eslint --dev
```

## How to use
Expand Down
4 changes: 2 additions & 2 deletions plugins/karma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This plugin pre-configures [Karma](https://karma-runner.github.io/), [Jasmine](h
## Install

```bash
yarn add @poi/plugin-karma@next --dev
yarn add @poi/plugin-karma --dev
```

## How to use
Expand Down Expand Up @@ -39,7 +39,7 @@ To run it easier, you can configure this in npm scripts:
"start": "poi --serve"
},
"devDependencies": {
"poi": "next"
"poi": "^12.0.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion plugins/reason/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Use [Reason](https://reasonml.github.io/) in your JavaScript apps.
## Install

```bash
yarn add @poi/plugin-reason@next bs-platform --dev
yarn add @poi/plugin-reason bs-platform --dev
```

## How to use
Expand Down
2 changes: 1 addition & 1 deletion plugins/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This plugin use `ts-loader` to transpile TypeScript files, it also uses `fork-ts
## Install

```bash
yarn add @poi/plugin-typescript@next typescript --dev
yarn add @poi/plugin-typescript typescript --dev
```

## How to use
Expand Down

0 comments on commit 9499e6e

Please sign in to comment.