Skip to content

Commit

Permalink
chore: move create-vike to create-vike-core (#2196)
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout authored Feb 19, 2025
1 parent 1296887 commit 97bf3d3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
11 changes: 7 additions & 4 deletions boilerplates/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
Source code of [`create-vike`](https://npmjs.com/package/create-vike) which powers:
Source code of [`create-vike-core`](https://npmjs.com/package/create-vike-core) which powers:

```shell
npm init vike
npm create vike-core@latest
```
```shell
pnpm create vike
pnpm create vike-core
```
```shell
yarn create vike
bun create vike-core
```
```shell
yarn create vike-core
```
4 changes: 2 additions & 2 deletions boilerplates/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "create-vike",
"name": "create-vike-core",
"version": "0.0.391",
"license": "MIT",
"bin": {
"create-vike": "index.js"
"create-vike-core": "index.js"
},
"main": "index.js",
"engines": {
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/new/+Page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ The following command scaffolds a Vike app with a fully custom React/Vue integra
With [npm](https://www.npmjs.com):

```shell
npm create vike@latest
npm create vike-core@latest
```

With [pnpm](https://pnpm.io):

```shell
pnpm create vike
pnpm create vike-core
```

With [Bun](https://bun.sh):

```shell
bun create vike
bun create vike-core
```

With [Yarn](https://yarnpkg.com):

```shell
yarn create vike
yarn create vike-core
```

Options:
Expand Down

0 comments on commit 97bf3d3

Please sign in to comment.