@spark-hire/bootstrap-themes 2.0.0 → 2.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/CHANGELOG.md +12 -0
- package/package.json +11 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v2.0.1 (Fri Mar 15 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fixed badly updated `package.json` from a late PR approval [#24](https://github.com/SparkHire/es6-bootstrap-themes/pull/24) ([@JavierPDev](https://github.com/JavierPDev))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Javier Pena ([@JavierPDev](https://github.com/JavierPDev))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.2.4 (Mon Mar 04 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-hire/bootstrap-themes",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Custom Bootstrap 4 Themes",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,10 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
21
|
-
"build": "npm run clean && npm run compile
|
|
21
|
+
"build": "npm run clean && npm run compile",
|
|
22
22
|
"clean": "rm -rf css/*",
|
|
23
23
|
"compile": "node scripts/build.js",
|
|
24
|
-
"prepublishOnly": "npm run build",
|
|
25
24
|
"scss": "npm run compile",
|
|
26
25
|
"watch": "npm-watch scss"
|
|
27
26
|
},
|
|
@@ -33,11 +32,19 @@
|
|
|
33
32
|
"popper.js": "^1.14.7"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
35
|
+
"auto": "^11.1.1",
|
|
36
36
|
"colors": "^1.3.3",
|
|
37
37
|
"fs": "0.0.1-security",
|
|
38
|
-
"node-sass": "^
|
|
38
|
+
"node-sass": "^9.0.0",
|
|
39
39
|
"node-sass-package-importer": "^5.3.0",
|
|
40
40
|
"npm-watch": "^0.6.0",
|
|
41
41
|
"react": "^16.12.0"
|
|
42
|
+
},
|
|
43
|
+
"auto": {
|
|
44
|
+
"plugins": [
|
|
45
|
+
"npm"
|
|
46
|
+
],
|
|
47
|
+
"onlyPublishWithReleaseLabel": true,
|
|
48
|
+
"author": "SparkHireBot <dev@sparkhire.com>"
|
|
42
49
|
}
|
|
43
50
|
}
|