Skip to content

Commit fd086f7

Browse files
committed
fix: create-app references
1 parent 62a7ca2 commit fd086f7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Deploy template
7070
run: |
7171
cd ..
72-
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create @rock-js/app \
72+
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create rock \
7373
--registry http://localhost:4873 \
7474
NightlyDeploy \
7575
--template=default \
@@ -110,7 +110,7 @@ jobs:
110110
- name: Deploy template
111111
run: |
112112
cd ..
113-
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create @rock-js/app \
113+
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create rock \
114114
--registry http://localhost:4873 \
115115
NightlyDeploy \
116116
--template=default \

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ rm -rf ~/Library/Caches/pnpm/dlx/
7979
pnpm e2e
8080

8181
# Or Create Rock app
82-
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create @rock-js/app --registry http://localhost:4873
82+
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm create rock --registry http://localhost:4873
8383
# Then use pnpm install with registry
8484
echo "node-linker=hoisted" > .npmrc
8585
NPM_CONFIG_REGISTRY=http://localhost:4873 pnpm install

packages/create-app/e2e/e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { beforeEach, describe, expect, it } from 'vitest';
1616
*/
1717

1818
const VERDACCIO_REGISTRY_URL = 'http://localhost:4873';
19-
const CREATE_APP_COMMAND = `pnpm create @rock-js/app`;
19+
const CREATE_APP_COMMAND = `pnpm create rock`;
2020

2121
const ROOT_DIR = path.resolve(__dirname, '../../..');
2222
const TEMP_DIR = getTempDirectory('e2e-deploys');

website/src/docs/brownfield/android.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To add React Native to your Android app, we'll package your React Native code in
1111
If you are creating a new Rock project, you can select the `brownfield-android` plugin:
1212

1313
```
14-
> npm create @rock-js/app
14+
> npm create rock
1515
...
1616
◆ What plugins do you want to start with?
1717
│ ◼ brownfield-android

website/src/docs/brownfield/ios.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To make the integration simpler and more powerful, we'll use the [React Native B
1313
If you are creating a new Rock project, you can select the `brownfield-ios` plugin:
1414

1515
```
16-
> npm create @rock-js/app
16+
> npm create rock
1717
...
1818
◆ What plugins do you want to start with?
1919
│ ◼ brownfield-ios

0 commit comments

Comments
 (0)