@synergy-design-system/components 2.20.0-settings.0 → 2.20.0-settings.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/LICENSE +9 -0
  2. package/package.json +25 -25
package/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ The MIT License
2
+
3
+ Copyright 2023 SICK AG
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://www.sick.com"
5
5
  },
6
6
  "name": "@synergy-design-system/components",
7
- "version": "2.20.0-settings.0",
7
+ "version": "2.20.0-settings.1",
8
8
  "description": "",
9
9
  "repository": {
10
10
  "type": "git",
@@ -34,24 +34,6 @@
34
34
  "files": [
35
35
  "dist"
36
36
  ],
37
- "scripts": {
38
- "build": "node scripts/build.js",
39
- "test": "web-test-runner --group default",
40
- "test.watch": "pnpm test -- --watch",
41
- "vendor": "node scripts/vendorism.js",
42
- "vendor.get": "node scripts/vendorism.js -g",
43
- "vendor.set": "node scripts/vendorism.js -s",
44
- "vendor.eject": "node scripts/vendorism.js -e",
45
- "lint:css": "stylelint \"src/**/*.{css,js,ts}\"",
46
- "lint:js": "eslint src",
47
- "lint": "pnpm run /^lint:.*/",
48
- "format.eslint": "pnpm lint:js --fix",
49
- "release": "semantic-release --tagFormat 'components/${version}' -e semantic-release-monorepo",
50
- "release.angular": "git add ../angular && git commit -m \"chore(release/angular) via component release [skip actions]\"",
51
- "release.react": "git add ../react && git commit -m \"chore(release/react) via component release [skip actions]\"",
52
- "release.vue": "git add ../vue && git commit -m \"chore(release/vue) via component release [skip actions]\"",
53
- "release.dry": "semantic-release --dry-run --tagFormat 'components/${version}' -e semantic-release-monorepo"
54
- },
55
37
  "type": "module",
56
38
  "types": "./dist/synergy.d.ts",
57
39
  "homepage": "https://synergy-design-system.github.io",
@@ -72,9 +54,6 @@
72
54
  "@semantic-release/changelog": "^6.0.3",
73
55
  "@semantic-release/exec": "^6.0.3",
74
56
  "@semantic-release/git": "^10.0.1",
75
- "@synergy-design-system/eslint-config-syn": "workspace:*",
76
- "@synergy-design-system/stylelint-config-syn": "workspace:*",
77
- "@synergy-design-system/tokens": "workspace:*",
78
57
  "@types/mocha": "^10.0.10",
79
58
  "@types/sinon": "^17.0.3",
80
59
  "@typescript-eslint/eslint-plugin": "^7.18.0",
@@ -117,7 +96,10 @@
117
96
  "unified": "^11.0.5",
118
97
  "unist-util-visit": "^5.0.0",
119
98
  "user-agent-data-types": "^0.4.2",
120
- "vendorism": "^5.0.0"
99
+ "vendorism": "^5.0.0",
100
+ "@synergy-design-system/stylelint-config-syn": "0.1.0",
101
+ "@synergy-design-system/tokens": "2.17.0",
102
+ "@synergy-design-system/eslint-config-syn": "0.1.0"
121
103
  },
122
104
  "release": {
123
105
  "branches": [
@@ -185,6 +167,24 @@
185
167
  "lit": "^3.2.1"
186
168
  },
187
169
  "peerDependencies": {
188
- "@synergy-design-system/tokens": "workspace:^"
170
+ "@synergy-design-system/tokens": "^2.17.0"
171
+ },
172
+ "scripts": {
173
+ "build": "node scripts/build.js",
174
+ "test": "web-test-runner --group default",
175
+ "test.watch": "pnpm test -- --watch",
176
+ "vendor": "node scripts/vendorism.js",
177
+ "vendor.get": "node scripts/vendorism.js -g",
178
+ "vendor.set": "node scripts/vendorism.js -s",
179
+ "vendor.eject": "node scripts/vendorism.js -e",
180
+ "lint:css": "stylelint \"src/**/*.{css,js,ts}\"",
181
+ "lint:js": "eslint src",
182
+ "lint": "pnpm run /^lint:.*/",
183
+ "format.eslint": "pnpm lint:js --fix",
184
+ "release": "semantic-release --tagFormat 'components/${version}' -e semantic-release-monorepo",
185
+ "release.angular": "git add ../angular && git commit -m \"chore(release/angular) via component release [skip actions]\"",
186
+ "release.react": "git add ../react && git commit -m \"chore(release/react) via component release [skip actions]\"",
187
+ "release.vue": "git add ../vue && git commit -m \"chore(release/vue) via component release [skip actions]\"",
188
+ "release.dry": "semantic-release --dry-run --tagFormat 'components/${version}' -e semantic-release-monorepo"
189
189
  }
190
- }
190
+ }