ssstyles 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -23,13 +23,13 @@ You have multiple options to install Ssstyles. I provide two packages:
23
23
  Use this snippet to insert the **base styles**:
24
24
 
25
25
  ```html
26
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/package@version/file" />
26
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/base.css" />
27
27
  ```
28
28
 
29
29
  Use this snippet to insert the base styles **and all components**:
30
30
 
31
31
  ```html
32
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/package@version/file" />
32
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/all.css" />
33
33
  ```
34
34
 
35
35
  ### npm
package/esbuild.js CHANGED
@@ -4,7 +4,7 @@ const watchFlag = process.argv.indexOf("--watch") > -1;
4
4
  const minifyFlag = process.argv.indexOf("--minify") > -1;
5
5
 
6
6
  const opts = {
7
- entryPoints: ["./css/style.css", "./css/base.css"],
7
+ entryPoints: ["./css/all.css", "./css/base.css"],
8
8
  outdir: "dist",
9
9
  bundle: true,
10
10
  minify: minifyFlag,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssstyles",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Ssstyles is a very simple CSS style system",
5
5
  "main": "dist/base.css",
6
6
  "scripts": {
File without changes
File without changes