@mozaic-ds/icons-angular 0.0.5 → 0.1.0-beta.7
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/dist/@mozaic-ds/icons-angular/LICENSE +201 -0
- package/dist/@mozaic-ds/icons-angular/README.md +127 -0
- package/dist/@mozaic-ds/icons-angular/fesm2022/mozaic-icons-angular.mjs +29769 -0
- package/dist/@mozaic-ds/icons-angular/fesm2022/mozaic-icons-angular.mjs.map +1 -0
- package/package.json +49 -17
- package/fesm2022/mozaic-icons-angular.mjs +0 -29769
- package/fesm2022/mozaic-icons-angular.mjs.map +0 -1
- /package/{index.d.ts → dist/@mozaic-ds/icons-angular/index.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,23 +1,55 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mozaic-ds/icons-angular",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
"
|
|
3
|
+
"version": "0.1.0-beta.7",
|
|
4
|
+
"description": "ADS icons for angular usage",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist/*",
|
|
7
|
+
"src/*"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"clean": "rm -rf dist/",
|
|
11
|
+
"postbuild": "cp README.md LICENSE dist/@mozaic-ds/icons-angular/ && jq '.name = \"@mozaic-ds/icons-angular\"' dist/@mozaic-ds/icons-angular/package.json > tmp.json && mv tmp.json dist/@mozaic-ds/icons-angular/package.json",
|
|
12
|
+
"icons:build": "node projects/mozaic-icons-angular/icons-builder/compile-icons.js",
|
|
13
|
+
"build": "ng build",
|
|
14
|
+
"prepublishOnly": "npm run clean && npm run icons:build && ng build mozaic-icons-angular && npm run postbuild",
|
|
15
|
+
"release": "node scripts/release.js",
|
|
16
|
+
"release:beta": "node scripts/release.js --beta"
|
|
7
17
|
},
|
|
8
18
|
"dependencies": {
|
|
9
|
-
"
|
|
19
|
+
"@angular/common": "^20.1.1",
|
|
20
|
+
"@angular/compiler": "^20.1.1",
|
|
21
|
+
"@angular/core": "^20.1.1",
|
|
22
|
+
"@angular/forms": "^20.1.1",
|
|
23
|
+
"@angular/platform-browser": "^20.1.1",
|
|
24
|
+
"@angular/router": "^20.1.1",
|
|
25
|
+
"@mozaic-ds/icons": "2.0.0-beta.47",
|
|
26
|
+
"rxjs": "~7.8.2",
|
|
27
|
+
"tslib": "^2.8.1"
|
|
10
28
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@angular/build": "^20.1.1",
|
|
31
|
+
"@angular/cli": "^20.1.1",
|
|
32
|
+
"@angular/compiler-cli": "^20.1.1",
|
|
33
|
+
"@release-it/conventional-changelog": "^10.0.1",
|
|
34
|
+
"@types/jasmine": "~5.1.8",
|
|
35
|
+
"glob": "^11.0.3",
|
|
36
|
+
"jasmine-core": "~5.8.0",
|
|
37
|
+
"karma": "~6.4.4",
|
|
38
|
+
"karma-chrome-launcher": "~3.2.0",
|
|
39
|
+
"karma-coverage": "~2.2.1",
|
|
40
|
+
"karma-jasmine": "~5.1.0",
|
|
41
|
+
"karma-jasmine-html-reporter": "~2.1.0",
|
|
42
|
+
"lerna": "^8.2.3",
|
|
43
|
+
"ng-packagr": "^20.1.0",
|
|
44
|
+
"release-it": "^19.0.4",
|
|
45
|
+
"rimraf": "^6.0.1",
|
|
46
|
+
"svg-parser": "^2.0.4",
|
|
47
|
+
"typescript": "~5.8.3"
|
|
48
|
+
},
|
|
49
|
+
"keywords": [
|
|
50
|
+
"icons",
|
|
51
|
+
"ads",
|
|
52
|
+
"design-system",
|
|
53
|
+
"icons-angular"
|
|
54
|
+
]
|
|
23
55
|
}
|