c3-components 0.0.0-watch
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 +24 -0
- package/_index.scss +2 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# C3Components
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project c3-components` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project c3-components`.
|
|
8
|
+
> Note: Don't forget to add `--project c3-components` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build c3-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 c3-components`, go to the dist folder `cd dist/c3-components` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test c3-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.
|
package/_index.scss
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "c3-components",
|
|
3
|
+
"version": "0.0.0-watch+1683040361064",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^15.2.0",
|
|
6
|
+
"@angular/core": "^15.2.0",
|
|
7
|
+
"@angular/cdk": "15.2.5",
|
|
8
|
+
"@angular/material": "15.2.5"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"tslib": "^2.3.0"
|
|
12
|
+
},
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"files": [
|
|
15
|
+
"./_index.scss"
|
|
16
|
+
],
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"sass": "./_index.scss",
|
|
20
|
+
"types": "./index.d.ts",
|
|
21
|
+
"esm2020": "./esm2020/c3-components.mjs",
|
|
22
|
+
"es2020": "./fesm2020/c3-components.mjs",
|
|
23
|
+
"es2015": "./fesm2015/c3-components.mjs",
|
|
24
|
+
"node": "./fesm2015/c3-components.mjs",
|
|
25
|
+
"default": "./fesm2020/c3-components.mjs"
|
|
26
|
+
},
|
|
27
|
+
"./package.json": {
|
|
28
|
+
"default": "./package.json"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"module": "fesm2015/c3-components.mjs",
|
|
32
|
+
"es2020": "fesm2020/c3-components.mjs",
|
|
33
|
+
"esm2020": "esm2020/c3-components.mjs",
|
|
34
|
+
"fesm2020": "fesm2020/c3-components.mjs",
|
|
35
|
+
"fesm2015": "fesm2015/c3-components.mjs",
|
|
36
|
+
"typings": "index.d.ts"
|
|
37
|
+
}
|