FFFF moved to yarn workspaces setup for UI · ITCSsDeveloper/eqMac@7fc4396 · GitHub
Skip to content

Commit 7fc4396

Browse files
committed
moved to yarn workspaces setup for UI
1 parent b9cbbb0 commit 7fc4396

130 files changed

Lines changed: 20487 additions & 31806 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
node_modules
66
.env
77
dist
8+
!modules/**/dist
89

910
native/app/Embedded/*

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54 E953 ,12 @@ If you want to run the web based User Interface locally then you need to follow
5454
#### Prerequisites
5555
Install [Node.js](https://nodejs.org/en/) LTS version preferrably using [NVM](https://github.com/nvm-sh/nvm#installing-and-updating)
5656

57+
Install [Yarn](https://classic.yarnpkg.com/en/) v1 globally: `npm i -g yarn` (this is needed because the project uses [Yarn Workspaces](https://classic.yarnpkg.com/en/docs/workspaces/))
58+
5759
#### Building and running the Web UI
58-
1. Go into the ui/ directory by `cd ui/`
59-
2. Install Node dependencies with `npm install`
60-
3. Start local development server with `npm start`
60+
1. Run `yarn` from the root directory of the Monorepo
61+
2. Go into the ui/ directory by `cd ui/`
62+
3. Start local development server with `yarn start`
6163

6264
### Native app + driver
6365
#### Prerequisites

modules/components/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

33
# compiled output
4-
/dist
54
/tmp
65
/out-tsc
76
# Only exists if Bazel was run
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Components
2+
3+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.2.9.
4+
5+
## Code scaffolding
6+
7+
Run `ng generate component component-name --project components` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project components`.
8+
> Note: Don't forget to add `--project components` or else it will be added to the default project in your `angular.json` file.
9+
10+
## Build
11+
12+
Run `ng build components` to build the project. The build artifacts will be stored in the `dist/` directory.
13+
14+
## Publishing
15+
16+
After building your library with `ng build components`, go to the dist folder `cd dist/components` and run `npm publish`.
17+
18+
## Running unit tests
19+
20+
Run `ng test components` to execute the unit tests via [Karma](https://karma-runner.github.io).
21+
22+
## Further help
23+
24+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export declare const FadeInOutAnimation: import("@angular/animations").AnimationTriggerMetadata;
2+
//# sourceMappingURL=fade-in-out.d.ts.map

modules/components/dist/components/animations/fade-in-out.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export declare const FromTopAnimation: import("@angular/animations").AnimationTriggerMetadata;
2+
//# sourceMappingURL=from-top.d.ts.map

modules/components/dist/components/animations/from-top.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { FadeInOutAnimation } from './fade-in-out';
2+
import { FromTopAnimation } from './from-top';
3+
export { FadeInOutAnimation, FromTopAnimation };
4+
//# sourceMappingURL=index.d.ts.map

modules/components/dist/components/animations/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)