-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from tinymce/feature/TINY-10787
TINY-10787: Update readme for correct and clear instruction
- Loading branch information
Showing
2 changed files
with
62 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,68 @@ | ||
# TinymceAngularTestPage | ||
# Tinymce Angular Test Page | ||
|
||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.6. | ||
This project is built using [Angular CLI](https://github.com/angular/angular-cli) version 15.2.9. | ||
|
||
## Project setup | ||
``` | ||
## Table of Contents | ||
- [Setting Up the Project](#setting-up-the-project) | ||
- [Running the Development Server](#running-the-development-server) | ||
- [Building the Project](#building-the-project) | ||
|
||
## Setting Up the Project | ||
To install all dependencies, run: | ||
```bash | ||
yarn install | ||
``` | ||
|
||
## Development server | ||
Alternatively, you can use `npm`, `pnpm`, or `bun`: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
```bash | ||
pnpm install | ||
``` | ||
|
||
```bash | ||
bun install | ||
``` | ||
|
||
## Running the Development Server | ||
To start the development server, execute: | ||
```shell | ||
yarn start | ||
``` | ||
|
||
For other package managers: | ||
```shell | ||
npm start | ||
``` | ||
|
||
```shell | ||
pnpm start | ||
``` | ||
|
||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. | ||
```shell | ||
bun start | ||
``` | ||
|
||
## Building the Project | ||
To compile the project, use: | ||
```shell | ||
yarn build | ||
``` | ||
|
||
## Build | ||
For other package managers: | ||
```shell | ||
npm run build | ||
``` | ||
|
||
```shell | ||
pnpm run build | ||
``` | ||
|
||
```shell | ||
bun run build | ||
``` | ||
|
||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. | ||
The compiled output will be placed in the `dist/` directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters