@synergy-design-system/assets 1.10.0 → 1.11.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [@synergy-design-system/assets-v1.11.0](https://github.com/synergy-design-system/synergy-design-system/compare/assets/1.10.0...assets/1.11.0) (2024-12-02)
2
+
3
+
4
+ ### Features
5
+
6
+ * ✨ provide a way to bundle svg assets ([#692](https://github.com/synergy-design-system/synergy-design-system/issues/692)) ([081f3ed](https://github.com/synergy-design-system/synergy-design-system/commit/081f3ed0c1a20d4a10acfdf18dde3ff698fc4d5d))
7
+
1
8
  # [@synergy-design-system/assets-v1.10.0](https://github.com/synergy-design-system/synergy-design-system/compare/assets/1.9.0...assets/1.10.0) (2024-11-21)
2
9
 
3
10
 
package/package.json CHANGED
@@ -3,11 +3,15 @@
3
3
  "name": "SICK Global UX Foundation",
4
4
  "url": "https://www.sick.com"
5
5
  },
6
+ "bin": {
7
+ "syn-create-spritesheet": "./dist/createSpritesheetCli.js"
8
+ },
6
9
  "description": "Assets for the Synergy Design System",
7
10
  "devDependencies": {
8
11
  "@clack/prompts": "^0.7.0",
9
12
  "@semantic-release/changelog": "^6.0.3",
10
13
  "@semantic-release/git": "^10.0.1",
14
+ "@types/node": "^20.17.6",
11
15
  "chalk": "^5.3.0",
12
16
  "dotenv": "^16.4.5",
13
17
  "eslint": "^8.57.1",
@@ -17,18 +21,23 @@
17
21
  "semantic-release": "^19.0.5",
18
22
  "semantic-release-monorepo": "7.0.5",
19
23
  "svgo": "^3.3.2",
24
+ "typescript": "^5.7.2",
20
25
  "@synergy-design-system/eslint-config-syn": "0.1.0"
21
26
  },
22
27
  "exports": {
23
28
  ".": {
24
- "types": "./src/default-icons.d.ts",
25
- "import": "./src/default-icons.js"
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.js"
26
31
  },
27
32
  "./icons/*": "./src/icons/*",
28
33
  "./logos/*": "./src/logos/*",
29
34
  "./default-icons.js": {
30
- "types": "./src/default-icons.js",
31
- "import": "./src/default-icons.js"
35
+ "types": "./dist/default-icons.d.ts",
36
+ "import": "./dist/default-icons.js"
37
+ },
38
+ "./createSpritesheet.js": {
39
+ "types": "./dist/createSpritesheet.d.ts",
40
+ "import": "./dist/createSpritesheet.js"
32
41
  }
33
42
  },
34
43
  "types": "./src/default-icons.d.ts",
@@ -102,8 +111,9 @@
102
111
  ]
103
112
  },
104
113
  "type": "module",
105
- "version": "1.10.0",
114
+ "version": "1.11.0",
106
115
  "scripts": {
116
+ "build": "rimraf dist && tsc -b",
107
117
  "lint": "eslint .",
108
118
  "format.eslint": "pnpm lint --fix",
109
119
  "fetch-assets": "node scripts/fetch-assets.js",