@salesforce/ui-bundle-template-app-react-sample-b2x 1.119.3 → 1.119.5

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 CHANGED
@@ -3,6 +3,25 @@
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.119.5](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.119.4...v1.119.5) (2026-03-31)
7
+
8
+ **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.119.4](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.119.3...v1.119.4) (2026-03-31)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * replace undefined WEBAPPLICATIONS_DIR with UIBUNDLES_DIR in org-setup ([#398](https://github.com/salesforce-experience-platform-emu/webapps/issues/398)) ([615d499](https://github.com/salesforce-experience-platform-emu/webapps/commit/615d49976fd4b92a840d25db79591e2818938a92))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.119.3](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.119.2...v1.119.3) (2026-03-31)
7
26
 
8
27
  **Note:** Version bump only for package @salesforce/ui-bundle-template-base-sfdx-project
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "Name": "Modern Haven Gallery",
81
81
  "Property__c": "@PropertyRef2",
82
- "Image_URL__c": "https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4",
82
+ "Image_URL__c": "https://images.unsplash.com/photo-1554995207-c18c203602cb",
83
83
  "Image_Type__c": "Gallery",
84
84
  "Display_Order__c": 2,
85
85
  "Alt_Text__c": "Modern Haven - stylish interior design"
@@ -15,8 +15,8 @@
15
15
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@salesforce/sdk-data": "^1.119.3",
19
- "@salesforce/ui-bundle": "^1.119.3",
18
+ "@salesforce/sdk-data": "^1.119.5",
19
+ "@salesforce/ui-bundle": "^1.119.5",
20
20
  "@tailwindcss/vite": "^4.1.17",
21
21
  "class-variance-authority": "^0.7.1",
22
22
  "clsx": "^2.1.1",
@@ -47,7 +47,7 @@
47
47
  "@graphql-eslint/eslint-plugin": "^4.1.0",
48
48
  "@graphql-tools/utils": "^11.0.0",
49
49
  "@playwright/test": "^1.49.0",
50
- "@salesforce/vite-plugin-ui-bundle": "^1.119.3",
50
+ "@salesforce/vite-plugin-ui-bundle": "^1.119.5",
51
51
  "@testing-library/jest-dom": "^6.6.3",
52
52
  "@testing-library/react": "^16.1.0",
53
53
  "@testing-library/user-event": "^14.5.2",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-sfdx-project-experimental",
3
- "version": "1.119.3",
3
+ "version": "1.119.5",
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.119.3",
9
+ "version": "1.119.5",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-base-sfdx-project",
3
- "version": "1.119.3",
3
+ "version": "1.119.5",
4
4
  "description": "Base SFDX project template",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "publishConfig": {
@@ -322,10 +322,10 @@ async function main() {
322
322
  const gitignoreTemplates = loadGitignoreTemplates();
323
323
  if (gitignoreTemplates) {
324
324
  ensureGitignore(ROOT, gitignoreTemplates.sfdx);
325
- if (existsSync(WEBAPPLICATIONS_DIR)) {
326
- for (const entry of readdirSync(WEBAPPLICATIONS_DIR, { withFileTypes: true })) {
325
+ if (existsSync(UIBUNDLES_DIR)) {
326
+ for (const entry of readdirSync(UIBUNDLES_DIR, { withFileTypes: true })) {
327
327
  if (entry.isDirectory() && !entry.name.startsWith('.')) {
328
- ensureGitignore(resolve(WEBAPPLICATIONS_DIR, entry.name), gitignoreTemplates.webapp);
328
+ ensureGitignore(resolve(UIBUNDLES_DIR, entry.name), gitignoreTemplates.webapp);
329
329
  }
330
330
  }
331
331
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/ui-bundle-template-app-react-sample-b2x",
3
- "version": "1.119.3",
3
+ "version": "1.119.5",
4
4
  "description": "Salesforce sample property rental React app",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "",