Skip to content

Commit d5a1bef

Browse files
Nick Balestrageovanisouza92
authored andcommitted
docs(META): take-off-training-wheels renamed to eject
ISSUES CLOSED: #38
1 parent b82e207 commit d5a1bef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $ npm run build
4747

4848
* **Many Flavors:** We like to be together not the same, that’s why create-cycle-app comes with 4 core flavors that you can mix and match with your favorite reactive stream library. Furthermore, a discovery mechanism allows to find and use any flavor published on the npm registry. Alternatively, you can use your own flavors from any registry such as GitHub or your own.
4949

50-
* **No Lock-In:** Specifically made for beginners and to provide fast bootstrap for new projects, create-cycle-app doesn't have the ambition to be __the__ tool for working with Cycle.js projects. With that in mind, it's easy to leave `create-cycle-app` defaults and follow your own steps, by running `npm run take-off-training-wheels`.
50+
* **No Lock-In:** Specifically made for beginners and to provide fast bootstrap for new projects, create-cycle-app doesn't have the ambition to be __the__ tool for working with Cycle.js projects. With that in mind, it's easy to leave `create-cycle-app` defaults and follow your own steps, by running `npm run eject`.
5151

5252
## Why Use This?
5353

@@ -113,7 +113,7 @@ Run the default test tool.
113113

114114
Generate a production-ready build content, on the build folder (this folder is gitignored)
115115

116-
### `npm run take-off-training-wheels`
116+
### `npm run eject`
117117

118118
Copy dependencies and configurations to the project folder, update package.json and remove the dependency on the flavored cycle-scripts.
119119

@@ -176,7 +176,7 @@ Take a look at [cycle-scripts-es-browserify](./cycle-scripts-es-browserify) as a
176176
│ ├── build.js
177177
│ ├── init.js
178178
│ ├── start.js
179-
│ ├── take-off-training-wheels.js
179+
│ ├── eject.js
180180
│ └── test.js
181181
└── template
182182
├── gitignore
@@ -195,7 +195,7 @@ Take a look at [cycle-scripts-es-browserify](./cycle-scripts-es-browserify) as a
195195

196196
`index.js` is the entry point for each command exposed to the target project. It could be really simple, just calling the next script file without ceremony.
197197

198-
`scripts/` directory holds each script used in the project. The `start.js` script is used to start a development server. `test.js`, as the name suggests, call the test tool. `build.js` is used to bundle the target project to a deliverable set of files, production-ready. `take-off-training-wheels.js` is mostly a copy-and-paste tool, that adapts the target project to reproduce the same commands from the flavor. Last, but not least, `init.js` is the script called by `create-cycle-app` command, in order to install development dependencies and copy initial files.
198+
`scripts/` directory holds each script used in the project. The `start.js` script is used to start a development server. `test.js`, as the name suggests, call the test tool. `build.js` is used to bundle the target project to a deliverable set of files, production-ready. `eject.js` is mostly a copy-and-paste tool, that adapts the target project to reproduce the same commands from the flavor. Last, but not least, `init.js` is the script called by `create-cycle-app` command, in order to install development dependencies and copy initial files.
199199

200200
`templates/` directory holds template files for the target project. This is optional, and unlike other files, could have any structure you desire.
201201

0 commit comments

Comments
 (0)