@axel669/windstorm 0.5.0-beta.0 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axel669/windstorm",
3
- "version": "0.5.0-beta.0",
3
+ "version": "0.5.0",
4
4
  "description": "",
5
5
  "main": "dist/module.js",
6
6
  "type": "module",
@@ -16,6 +16,7 @@
16
16
  "license": "MIT",
17
17
  "devDependencies": {
18
18
  "@axel669/ipsen": "0.4.1",
19
+ "@rollup/plugin-terser": "^0.4.4",
19
20
  "csso": "^5.0.5",
20
21
  "fs-jetpack": "^5.1.0",
21
22
  "js-yaml": "^4.1.0",
@@ -29,9 +30,5 @@
29
30
  ],
30
31
  "windSettings": {
31
32
  "fontVersion": "1"
32
- },
33
- "exports": {
34
- ".": "./dist/module.js",
35
- "./browser": "./dist/browser.js"
36
33
  }
37
34
  }
package/readme.md CHANGED
@@ -14,15 +14,15 @@ minor differences between a set of 20.
14
14
 
15
15
  ### CDN Link (global variable)
16
16
  ```html
17
- <script src="https://esm.sh/@axel669/windstorm@0.4.6/dist/browser.js"></script>
17
+ <script src="https://esm.sh/@axel669/windstorm@0.5.0/dist/browser.js?raw"></script>
18
18
  ```
19
19
 
20
20
  ### CDN Link (module)
21
21
  ```js
22
22
  // Only scanning, no functions
23
- import "https://esm.sh/@axel669/windstorm@0.4.6/dist/module.js"
23
+ import "https://esm.sh/@axel669/windstorm@0.5.0"
24
24
  // Import functions + scanning
25
- import ws from "https://esm.sh/@axel669/windstorm@0.4.6/dist/module.js"
25
+ import ws from "https://esm.sh/@axel669/windstorm@0.5.0"
26
26
 
27
27
  ws.x({...stuff})
28
28
  ```
@@ -54,7 +54,7 @@ can be empty).
54
54
 
55
55
  ```html
56
56
  <body ws-x="@@theme:tron">
57
- <script src="<windstorm>"></script>
57
+ <script src="https://esm.sh/@axel669/windstorm@0.5.0/dist/browser.js?raw"></script>
58
58
  Static content here
59
59
  </body>
60
60
  ```