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 +2 -2
- package/esbuild.js +1 -1
- package/package.json +1 -1
- /package/css/{style.css → all.css} +0 -0
- /package/dist/{style.css → all.css} +0 -0
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/
|
|
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/
|
|
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/
|
|
7
|
+
entryPoints: ["./css/all.css", "./css/base.css"],
|
|
8
8
|
outdir: "dist",
|
|
9
9
|
bundle: true,
|
|
10
10
|
minify: minifyFlag,
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|