@synergy-design-system/assets 0.1.0 → 1.0.0-main.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +16 -14
package/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # @synergy-design-system/assets-v1.0.0-main.1 (2023-10-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 🤔 Fix multiple errors in package.json ([#85](https://github.com/SickDesignSystem/synergy/issues/85)) ([7d18b9a](https://github.com/SickDesignSystem/synergy/commit/7d18b9a43c836a33f9f1beaefd18c4c2abf937c4))
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "author": {
3
- "name": "SICK Integrated Automation - UX and UI Services Team",
3
+ "name": "SICK Global UX Foundation",
4
4
  "url": "https://www.sick.com"
5
5
  },
6
- "description": "Assets for the SICK Design System",
6
+ "description": "Assets for the Synergy Design System",
7
7
  "devDependencies": {
8
8
  "@clack/prompts": "^0.7.0",
9
9
  "@semantic-release/changelog": "^6.0.3",
@@ -15,7 +15,7 @@
15
15
  "eslint": "^8.47.0",
16
16
  "figma-export-assets": "github:mariohamann/figma-export-assets",
17
17
  "rimraf": "^5.0.1",
18
- "semantic-release": "^22.0.5",
18
+ "semantic-release": "^19.0.5",
19
19
  "semantic-release-monorepo": "^7.0.5",
20
20
  "style-dictionary": "^3.8.0",
21
21
  "svgo": "^3.0.2"
@@ -23,25 +23,25 @@
23
23
  "exports": {
24
24
  ".": "./build/js/index.js"
25
25
  },
26
- "files": [
27
- "dist",
28
- "CHANGELOG.md"
29
- ],
30
- "homepage": "https://github.com/SickDesignSystem/syn/tree/main/packages/assets",
26
+ "homepage": "https://github.com/SickDesignSystem/synergy/tree/main/packages/assets",
31
27
  "keywords": [
28
+ "Static Assets",
32
29
  "SDS",
30
+ "Synergy Design System",
33
31
  "SICK",
34
32
  "SICK Design System",
35
- "Design Tokens"
33
+ "SICK Icons",
34
+ "SICK Logos"
36
35
  ],
37
36
  "files": [
38
- "src/logos"
37
+ "src/logos",
38
+ "CHANGELOG.md"
39
39
  ],
40
40
  "license": "BSD-3-Clause",
41
41
  "name": "@synergy-design-system/assets",
42
42
  "repository": {
43
43
  "type": "git",
44
- "url": "https://github.com/SickDesignSystem/syn.git",
44
+ "url": "https://github.com/SickDesignSystem/synergy.git",
45
45
  "directory": "packages/assets"
46
46
  },
47
47
  "release": {
@@ -58,7 +58,8 @@
58
58
  {
59
59
  "name": "alpha",
60
60
  "prerelease": true
61
- }
61
+ },
62
+ "release-fallback"
62
63
  ],
63
64
  "plugins": [
64
65
  "@semantic-release/commit-analyzer",
@@ -95,9 +96,10 @@
95
96
  },
96
97
  "scripts": {
97
98
  "lint": "eslint .",
98
- "fetch-assets": "node scripts/fetch-assets.js"
99
+ "fetch-assets": "node scripts/fetch-assets.js",
100
+ "release": "semantic-release --tagFormat 'assets/${version}' -e semantic-release-monorepo"
99
101
  },
100
102
  "type": "module",
101
103
  "types": "./build/js/index.d.ts",
102
- "version": "0.1.0"
104
+ "version": "1.0.0-main.1"
103
105
  }