ds-one 0.2.5-alpha.6 → 0.2.5-alpha.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.
@@ -1,4 +1,4 @@
1
- /* version 0.2.5-alpha.6 */
1
+ /* version 0.2.5-alpha.7 */
2
2
 
3
3
  input {
4
4
  padding: 0;
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # DS one (0.2.5-alpha.6)
1
+ # DS one (0.2.5-alpha.7)
2
2
 
3
3
  A plug and play design system
4
4
 
@@ -20,7 +20,7 @@ yarn add ds-one@alpha
20
20
 
21
21
  ```
22
22
 
23
- **Note**: Currently published as alpha version `0.2.5-alpha.6`
23
+ **Note**: Currently published as alpha version `0.2.5-alpha.7`
24
24
 
25
25
  ## Quick Start
26
26
 
@@ -33,11 +33,11 @@ yarn add ds-one@alpha
33
33
  <!-- CSS -->
34
34
  <link
35
35
  rel="stylesheet"
36
- href="<https://cdn.jsdelivr.net/npm/ds-one@alpha/DS1/1-root/one.css>"
36
+ href="https://cdn.jsdelivr.net/npm/ds-one@alpha/DS1/1-root/one.css"
37
37
  />
38
38
  <!-- Bundle -->
39
39
  <script type="module">
40
- import "<https://cdn.jsdelivr.net/npm/ds-one@alpha/dist/ds-one.bundle.min.js>";
40
+ import "https://cdn.jsdelivr.net/npm/ds-one@alpha/dist/ds-one.bundle.min.js";
41
41
  </script>
42
42
  </head>
43
43
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ds-one",
3
- "version": "0.2.5-alpha.6",
3
+ "version": "0.2.5-alpha.7",
4
4
  "description": "A component-based design system built with TypeScript and LitElement that provides reusable UI components with built-in theming, internationalization, and accessibility features.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -45,6 +45,7 @@
45
45
  "release:minor": "bun run scripts/release.ts minor",
46
46
  "release:major": "bun run scripts/release.ts major",
47
47
  "release:pre:alpha": "bun run scripts/release.ts prerelease --preid=alpha",
48
+ "publish": "npm publish --tag alpha",
48
49
  "docs:dev": "cd website && bun run dev",
49
50
  "docs:build": "cd website && bun run build",
50
51
  "docs:preview": "cd website && bun run preview",