holygrail5 1.0.9 → 1.0.10
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 +15 -1
package/package.json
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holygrail5",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Framework CSS generator con Node.js - Genera CSS optimizado con variables CSS desde un archivo JSON de configuración",
|
|
5
5
|
"main": "generate-css.js",
|
|
6
6
|
"style": "dist/output.css",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"default": "./generate-css.js"
|
|
10
|
+
},
|
|
11
|
+
"./dist/output": "./dist/output.css",
|
|
12
|
+
"./themes/dutti/variables": "./themes/dutti/_variables.css",
|
|
13
|
+
"./themes/dutti/buttons": "./themes/dutti/_buttons.css",
|
|
14
|
+
"./themes/dutti/checkboxes": "./themes/dutti/_checkboxes.css",
|
|
15
|
+
"./themes/dutti/forms": "./themes/dutti/_forms.css",
|
|
16
|
+
"./themes/dutti/inputs": "./themes/dutti/_inputs.css",
|
|
17
|
+
"./themes/dutti/labels": "./themes/dutti/_labels.css",
|
|
18
|
+
"./themes/dutti/radios": "./themes/dutti/_radios.css",
|
|
19
|
+
"./themes/dutti/switches": "./themes/dutti/_switches.css"
|
|
20
|
+
},
|
|
7
21
|
"bin": {
|
|
8
22
|
"holygrail5": "./generate-css.js"
|
|
9
23
|
},
|