@genesislcap/blank-app-seed 3.10.5 → 3.10.6-prerelease.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.10.5",
4
+ "version": "3.10.6-prerelease.2",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -2,7 +2,7 @@ name: Build
2
2
 
3
3
  on:
4
4
  pull_request:
5
- branches: [main, master, develop, alpha]
5
+ branches: [main, master, develop, alpha, prerelease]
6
6
  workflow_dispatch:
7
7
 
8
8
  jobs:
@@ -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,9 +22,19 @@ 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
25
26
  npm install
26
27
  npm run release
27
28
 
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
+
28
38
  - name: Generate .npmignore
29
39
  run: cp .gitignore .npmignore && echo '!.gitignore' >> .npmignore && cat .npmignore
30
40
 
@@ -35,4 +45,5 @@ jobs:
35
45
  uses: JS-DevTools/npm-publish@v3
36
46
  with:
37
47
  token: ${{secrets.NPM_TOKEN}}
48
+ tag: ${{ steps.dist-tag.outputs.DIST_TAG }}
38
49
 
package/.releaserc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "branches": ["main"],
2
+ "branches": ["main", {"name": "prerelease", "prerelease": true}],
3
3
  "repositoryUrl": "https://github.com/genesiscommunitysuccess/blank-app-seed",
4
4
  "plugins": [
5
5
  [
@@ -56,6 +56,12 @@
56
56
  ]
57
57
  }
58
58
  ],
59
+ [
60
+ "@semantic-release/exec",
61
+ {
62
+ "publishCmd": "echo \"${nextRelease.channel}\" > /tmp/dist-tag"
63
+ }
64
+ ],
59
65
  [
60
66
  "@semantic-release/git",
61
67
  {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.10.6-prerelease.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.6-prerelease.1...v3.10.6-prerelease.2) (2024-05-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * populate dist tag correctly GENC-511 (#224) a34021b
9
+
10
+ ## [3.10.6-prerelease.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.5...v3.10.6-prerelease.1) (2024-05-23)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * build config update GENC-511 (#223) 3b55d54
16
+ * remove reference to FAST GENC-511 (#222) f5adba4
17
+
3
18
  ## [3.10.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.4...v3.10.5) (2024-05-22)
4
19
 
5
20
 
package/client/README.md CHANGED
@@ -3,8 +3,6 @@
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/).
8
6
 
9
7
  # Development
10
8
 
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.10.5",
4
+ "version": "3.10.6-prerelease.2",
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",
11
12
  "@semantic-release/git": "^10.0.1",
12
13
  "conventional-changelog-conventionalcommits": "^6.1.0",
13
14
  "semantic-release": "^21.0.7",