@genesislcap/blank-app-seed 3.10.6-prerelease.2 → 3.10.7
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/.genx/package.json +1 -1
- package/.genx/versions.json +2 -2
- package/.github/workflows/build.yml +1 -1
- package/.github/workflows/release.yml +1 -12
- package/.releaserc +0 -6
- package/CHANGELOG.md +4 -5
- package/client/README.md +2 -0
- package/package.json +1 -2
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
|
@@ -2,7 +2,7 @@ name: Release
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [main,
|
|
5
|
+
branches: [main,prerelease]
|
|
6
6
|
|
|
7
7
|
jobs:
|
|
8
8
|
release:
|
|
@@ -22,19 +22,9 @@ jobs:
|
|
|
22
22
|
env:
|
|
23
23
|
GH_TOKEN: ${{secrets.GH_USER_TOKEN}}
|
|
24
24
|
run: |
|
|
25
|
-
touch /tmp/dist-tag # create a blank file, so it's always there even if we don't do a release
|
|
26
25
|
npm install
|
|
27
26
|
npm run release
|
|
28
27
|
|
|
29
|
-
- name: Set dist tag
|
|
30
|
-
id: dist-tag
|
|
31
|
-
run: |
|
|
32
|
-
{
|
|
33
|
-
echo 'DIST_TAG<<EOF'
|
|
34
|
-
cat /tmp/dist-tag
|
|
35
|
-
echo EOF
|
|
36
|
-
} >> "$GITHUB_OUTPUT"
|
|
37
|
-
|
|
38
28
|
- name: Generate .npmignore
|
|
39
29
|
run: cp .gitignore .npmignore && echo '!.gitignore' >> .npmignore && cat .npmignore
|
|
40
30
|
|
|
@@ -45,5 +35,4 @@ jobs:
|
|
|
45
35
|
uses: JS-DevTools/npm-publish@v3
|
|
46
36
|
with:
|
|
47
37
|
token: ${{secrets.NPM_TOKEN}}
|
|
48
|
-
tag: ${{ steps.dist-tag.outputs.DIST_TAG }}
|
|
49
38
|
|
package/.releaserc
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [3.10.
|
|
3
|
+
## [3.10.7](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.6...v3.10.7) (2024-05-28)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#230) a94d95b
|
|
9
9
|
|
|
10
|
-
## [3.10.6
|
|
10
|
+
## [3.10.6](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.5...v3.10.6) (2024-05-23)
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
### Bug Fixes
|
|
14
14
|
|
|
15
|
-
*
|
|
16
|
-
* remove reference to FAST GENC-511 (#222) f5adba4
|
|
15
|
+
* ability to set position in search-bar GENC-498 (#227) 279093b, closes PSD-9
|
|
17
16
|
|
|
18
17
|
## [3.10.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.4...v3.10.5) (2024-05-22)
|
|
19
18
|
|
package/client/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
## Frontend stack
|
|
4
4
|
|
|
5
5
|
Genesis components are standards-based Web Components, making them compatible with almost any modern web framework.
|
|
6
|
+
Our state-of-the-art design system and component set is built on top of
|
|
7
|
+
[Microsoft FAST](https://www.fast.design/docs/introduction/).
|
|
6
8
|
|
|
7
9
|
# Development
|
|
8
10
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/blank-app-seed",
|
|
3
3
|
"description": "Genesis Blank App Seed",
|
|
4
|
-
"version": "3.10.
|
|
4
|
+
"version": "3.10.7",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"release": "semantic-release"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@semantic-release/changelog": "^6.0.3",
|
|
11
|
-
"@semantic-release/exec": "^6.0.3",
|
|
12
11
|
"@semantic-release/git": "^10.0.1",
|
|
13
12
|
"conventional-changelog-conventionalcommits": "^6.1.0",
|
|
14
13
|
"semantic-release": "^21.0.7",
|