nmce-func 1.6.1 → 1.7.1
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 +0 -21
- package/package.json +9 -7
- /package/{index.d.ts → types/nmce-func.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -13,24 +13,3 @@ Common functions used in JavaScript apps and also in other library projects of t
|
|
|
13
13
|
|
|
14
14
|
Hints:
|
|
15
15
|
* Many of the date time functions are the wrappers of luxon.
|
|
16
|
-
|
|
17
|
-
## Code scaffolding
|
|
18
|
-
|
|
19
|
-
Run `ng generate component component-name --project nmce-func` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project nmce-func`.
|
|
20
|
-
> Note: Don't forget to add `--project nmce-func` or else it will be added to the default project in your `angular.json` file.
|
|
21
|
-
|
|
22
|
-
## Build
|
|
23
|
-
|
|
24
|
-
Run `ng build nmce-func` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
25
|
-
|
|
26
|
-
## Publishing
|
|
27
|
-
|
|
28
|
-
After building your library with `ng build nmce-func`, go to the dist folder `cd dist/nmce-func` and run `npm publish`.
|
|
29
|
-
|
|
30
|
-
## Running unit tests
|
|
31
|
-
|
|
32
|
-
Run `ng test nmce-func` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
33
|
-
|
|
34
|
-
## Further help
|
|
35
|
-
|
|
36
|
-
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nmce-func",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Z"
|
|
6
6
|
},
|
|
@@ -12,19 +12,21 @@
|
|
|
12
12
|
"keywords": [
|
|
13
13
|
"angular"
|
|
14
14
|
],
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"luxon": "^3.7.2",
|
|
17
|
+
"uuid": "13.0.0",
|
|
18
|
+
"tslib": "^2.3.0"
|
|
19
|
+
},
|
|
15
20
|
"module": "fesm2022/nmce-func.mjs",
|
|
16
|
-
"typings": "
|
|
21
|
+
"typings": "types/nmce-func.d.ts",
|
|
17
22
|
"exports": {
|
|
18
23
|
"./package.json": {
|
|
19
24
|
"default": "./package.json"
|
|
20
25
|
},
|
|
21
26
|
".": {
|
|
22
|
-
"types": "./
|
|
27
|
+
"types": "./types/nmce-func.d.ts",
|
|
23
28
|
"default": "./fesm2022/nmce-func.mjs"
|
|
24
29
|
}
|
|
25
30
|
},
|
|
26
|
-
"sideEffects": false
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"tslib": "^2.3.0"
|
|
29
|
-
}
|
|
31
|
+
"sideEffects": false
|
|
30
32
|
}
|
|
File without changes
|