sdga-ui 1.0.1 → 1.0.2
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/.github/workflows/publish.yml +33 -0
- package/README.md +5 -5
- package/css/dga-ui.css +27286 -27286
- package/package.json +16 -6
- package/theme/customizations/_cards.scss +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sdga-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "DGA UI - Government-Style Bootstrap Theme",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"sdga",
|
|
7
|
+
"sdga-ui",
|
|
6
8
|
"dga",
|
|
9
|
+
"dga-ui",
|
|
10
|
+
"saudi government design",
|
|
7
11
|
"bootstrap",
|
|
8
12
|
"theme",
|
|
9
13
|
"government",
|
|
10
|
-
"dga-ui",
|
|
11
14
|
"design",
|
|
12
15
|
"template"
|
|
13
16
|
],
|
|
@@ -27,11 +30,18 @@
|
|
|
27
30
|
"test": "echo \"No tests yet\" && exit 0",
|
|
28
31
|
"format": "prettier --write \"**/*.{js,json,md,css,scss}\"",
|
|
29
32
|
"format:check": "prettier --check \"**/*.{js,json,md,css,scss}\"",
|
|
30
|
-
"build-css": "sass theme/dga-ui.scss
|
|
31
|
-
"watch-css": "sass --watch theme/dga-ui.scss
|
|
32
|
-
"prepublishOnly": "npm
|
|
33
|
+
"build-css": "sass --load-path=node_modules theme/dga-ui.scss css/dga-ui.css",
|
|
34
|
+
"watch-css": "sass --load-path=node_modules --watch theme/dga-ui.scss css/dga-ui.css",
|
|
35
|
+
"prepublishOnly": "npm run build-css"
|
|
33
36
|
},
|
|
34
|
-
"
|
|
37
|
+
"peerDependencies": {
|
|
35
38
|
"bootstrap": "^5.3.8"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"bootstrap": "^5.3.8",
|
|
42
|
+
"sass": "^1.69.5",
|
|
43
|
+
"postcss": "^8.4.38",
|
|
44
|
+
"autoprefixer": "^10.4.19",
|
|
45
|
+
"prettier": "^3.2.0"
|
|
36
46
|
}
|
|
37
47
|
}
|