@salesforce/ui-bundle-template-app-react-template-b2e 1.117.2 → 1.117.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/dist/CHANGELOG.md +16 -0
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/dist/scripts/graphql-search.sh +4 -4
- package/package.json +1 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.117.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.3...v1.117.4) (2026-03-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.117.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.2...v1.117.3) (2026-03-29)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.117.2](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.117.1...v1.117.2) (2026-03-29)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
|
package/dist/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-base-sfdx-project-experimental",
|
|
3
|
-
"version": "1.117.
|
|
3
|
+
"version": "1.117.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/webapp-template-base-sfdx-project-experimental",
|
|
9
|
-
"version": "1.117.
|
|
9
|
+
"version": "1.117.4",
|
|
10
10
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@lwc/eslint-plugin-lwc": "^3.3.0",
|
package/dist/package.json
CHANGED
|
@@ -60,8 +60,8 @@ if [ ! -f "$SCHEMA" ]; then
|
|
|
60
60
|
echo "ERROR: schema.graphql not found at $SCHEMA"
|
|
61
61
|
echo " Make sure you are running from the SFDX project root, or pass the path explicitly:"
|
|
62
62
|
echo " bash $0 --schema <path/to/schema.graphql> <EntityName>"
|
|
63
|
-
echo " If the file is missing entirely, generate it from the
|
|
64
|
-
echo " cd force-app/main/default/
|
|
63
|
+
echo " If the file is missing entirely, generate it from the ui-bundle dir:"
|
|
64
|
+
echo " cd force-app/main/default/uiBundles/<app-name> && npm run graphql:schema"
|
|
65
65
|
exit 1
|
|
66
66
|
fi
|
|
67
67
|
|
|
@@ -73,8 +73,8 @@ fi
|
|
|
73
73
|
|
|
74
74
|
if [ ! -s "$SCHEMA" ]; then
|
|
75
75
|
echo "ERROR: schema.graphql is empty at $SCHEMA"
|
|
76
|
-
echo " Regenerate it from the
|
|
77
|
-
echo " cd force-app/main/default/
|
|
76
|
+
echo " Regenerate it from the ui-bundle dir:"
|
|
77
|
+
echo " cd force-app/main/default/uiBundles/<app-name> && npm run graphql:schema"
|
|
78
78
|
exit 1
|
|
79
79
|
fi
|
|
80
80
|
|