@seace/ui 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -21
- package/fesm2022/seace-ui.mjs +1416 -8
- package/fesm2022/seace-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/seace-ui.d.ts +91 -5
package/README.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
#
|
|
1
|
+
# SeaceUiWorkspace
|
|
2
2
|
|
|
3
|
-
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.2.
|
|
3
|
+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.2.5.
|
|
4
|
+
|
|
5
|
+
## Development server
|
|
6
|
+
|
|
7
|
+
To start a local development server, run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
ng serve
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
|
4
14
|
|
|
5
15
|
## Code scaffolding
|
|
6
16
|
|
|
@@ -18,32 +28,17 @@ ng generate --help
|
|
|
18
28
|
|
|
19
29
|
## Building
|
|
20
30
|
|
|
21
|
-
To build the
|
|
31
|
+
To build the project run:
|
|
22
32
|
|
|
23
33
|
```bash
|
|
24
|
-
ng build
|
|
34
|
+
ng build
|
|
25
35
|
```
|
|
26
36
|
|
|
27
|
-
This
|
|
28
|
-
|
|
29
|
-
### Publishing the Library
|
|
30
|
-
|
|
31
|
-
Once the project is built, you can publish your library by following these steps:
|
|
32
|
-
|
|
33
|
-
1. Navigate to the `dist` directory:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
cd dist/ui
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
2. Run the `npm publish` command to publish your library to the npm registry:
|
|
40
|
-
```bash
|
|
41
|
-
npm publish
|
|
42
|
-
```
|
|
37
|
+
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
|
|
43
38
|
|
|
44
39
|
## Running unit tests
|
|
45
40
|
|
|
46
|
-
To execute unit tests with the [
|
|
41
|
+
To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command:
|
|
47
42
|
|
|
48
43
|
```bash
|
|
49
44
|
ng test
|