fscss 1.1.19 → 1.1.20
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 +3 -3
- package/bin/fscss.js +0 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ It is designed to make styling faster, reusable, and expressive — without losi
|
|
|
21
21
|
- `@fun` → function-style reusable properties
|
|
22
22
|
- `@obj` → structured reusable style objects
|
|
23
23
|
```css
|
|
24
|
-
@define center(elem){
|
|
24
|
+
@define center(elem){`
|
|
25
25
|
@use(elem){
|
|
26
26
|
display:flex;
|
|
27
27
|
justify-content:center;
|
|
28
28
|
align-items:center;
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
`}
|
|
31
31
|
|
|
32
32
|
@center(.box)
|
|
33
33
|
```
|
|
@@ -147,7 +147,7 @@ npm install fscss
|
|
|
147
147
|
|
|
148
148
|
** Browser Usage**
|
|
149
149
|
```html
|
|
150
|
-
<script src="https://cdn.jsdelivr.net/npm/fscss@
|
|
150
|
+
<script src="https://cdn.jsdelivr.net/npm/fscss@latest/exec.min.js" defer></script>
|
|
151
151
|
```
|
|
152
152
|
**Use directly:**
|
|
153
153
|
```html
|
package/bin/fscss.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fscss",
|
|
3
3
|
"description": "Figured Shorthand Cascading Style Sheet",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.20",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/Figsh/xfscss#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
34
|
+
"express": "^4.18.2",
|
|
35
|
+
"dotenv": "^16.0.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"
|
|
39
|
-
"
|
|
38
|
+
"mocha": "^10.0.0",
|
|
39
|
+
"chai": "^4.3.4"
|
|
40
40
|
},
|
|
41
41
|
"directories": {
|
|
42
42
|
"lib": "lib"
|