@graupl/graupl 1.0.0-beta.3 → 1.0.0-beta.4
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/docs.yml +2 -2
- package/CHANGELOG.md +13 -0
- package/dist/css/graupl.css +1 -1
- package/dist/css/graupl.css.map +1 -1
- package/dist/css/init.css.map +1 -1
- package/dist/css/layout.css +1 -1
- package/dist/css/layout.css.map +1 -1
- package/dist/css/utilities/spacing.css +1 -1
- package/dist/css/utilities/spacing.css.map +1 -1
- package/dist/css/utilities.css +1 -1
- package/dist/css/utilities.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/_init.scss +4 -1
- package/src/scss/utilities/spacing/_index.scss +24 -24
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
npm run docs:build
|
|
42
42
|
touch docs/.vitepress/dist/.nojekyll
|
|
43
43
|
- name: Upload artifact
|
|
44
|
-
uses: actions/upload-pages-artifact@
|
|
44
|
+
uses: actions/upload-pages-artifact@v3
|
|
45
45
|
with:
|
|
46
46
|
path: docs/.vitepress/dist
|
|
47
47
|
|
|
@@ -56,4 +56,4 @@ jobs:
|
|
|
56
56
|
steps:
|
|
57
57
|
- name: Deploy to GitHub Pages
|
|
58
58
|
id: deployment
|
|
59
|
-
uses: actions/deploy-pages@
|
|
59
|
+
uses: actions/deploy-pages@v4
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.0.0-beta.4](https://github.com/Graupl/graupl/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2025-02-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **layers:** use id in layer initialization ([f09a3ae](https://github.com/Graupl/graupl/commit/f09a3aeffdfe2bc0c781fa2a29aac1cd2f15e484))
|
|
11
|
+
* **utility:** update gap to account for selector base ([550136b](https://github.com/Graupl/graupl/commit/550136b822959c1db1113f19a90ffe377315b270))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Build System
|
|
15
|
+
|
|
16
|
+
* **git:** update pages job to use latest versions ([79a1d18](https://github.com/Graupl/graupl/commit/79a1d18bf12573b0885621aa3b5132136c623150))
|
|
17
|
+
|
|
5
18
|
## [1.0.0-beta.3](https://github.com/Graupl/graupl/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2025-02-12)
|
|
6
19
|
|
|
7
20
|
|