@salesforce/webapp-template-base-react-app-experimental 1.116.7 → 1.116.9

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.116.9](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.8...v1.116.9) (2026-03-27)
7
+
8
+ **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
9
+
10
+ ## [1.116.8](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.7...v1.116.8) (2026-03-27)
11
+
12
+ ### Bug Fixes
13
+
14
+ - (@W-21637993) lint refactor, added build:dist-app to sample apps, minor refactors flagged by linter ([#370](https://github.com/salesforce-experience-platform-emu/webapps/issues/370)) ([c0ccca6](https://github.com/salesforce-experience-platform-emu/webapps/commit/c0ccca630a8c8414ea41ed3f855e7955f30c1734))
15
+
6
16
  ## [1.116.7](https://github.com/salesforce-experience-platform-emu/webapps/compare/v1.116.6...v1.116.7) (2026-03-27)
7
17
 
8
18
  **Note:** Version bump only for package @salesforce/webapp-template-base-react-app-experimental
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/webapp-template-base-react-app-experimental",
3
- "version": "1.116.7",
3
+ "version": "1.116.9",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,7 +18,12 @@ const schemaExists = existsSync(schemaPath);
18
18
  const config = [
19
19
  // Global ignores
20
20
  {
21
- ignores: ['build/**/*', 'dist/**/*', 'coverage/**/*'],
21
+ ignores: [
22
+ 'build/**/*',
23
+ 'dist/**/*',
24
+ 'coverage/**/*',
25
+ 'src/api/graphql-operations-types.ts',
26
+ ],
22
27
  },
23
28
  // Config files and build tools (first to avoid inheritance)
24
29
  {
@@ -89,11 +94,17 @@ const config = [
89
94
  'react/no-unescaped-entities': 'off',
90
95
  '@typescript-eslint/no-unused-vars': [
91
96
  'error',
92
- { argsIgnorePattern: '^_' },
97
+ {
98
+ argsIgnorePattern: '^_',
99
+ varsIgnorePattern: '^_',
100
+ caughtErrorsIgnorePattern: '^_',
101
+ ignoreRestSiblings: true,
102
+ },
93
103
  ],
94
104
  '@typescript-eslint/explicit-function-return-type': 'off',
95
105
  '@typescript-eslint/explicit-module-boundary-types': 'off',
96
106
  '@typescript-eslint/no-explicit-any': 'off',
107
+ 'react-hooks/set-state-in-effect': 'warn',
97
108
  },
98
109
  settings: {
99
110
  react: {
@@ -15,8 +15,8 @@
15
15
  "graphql:schema": "node scripts/get-graphql-schema.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@salesforce/sdk-data": "^1.116.7",
19
- "@salesforce/webapp-experimental": "^1.116.7",
18
+ "@salesforce/sdk-data": "^1.116.9",
19
+ "@salesforce/webapp-experimental": "^1.116.9",
20
20
  "@tailwindcss/vite": "^4.1.17",
21
21
  "class-variance-authority": "^0.7.1",
22
22
  "clsx": "^2.1.1",
@@ -41,7 +41,7 @@
41
41
  "@graphql-eslint/eslint-plugin": "^4.1.0",
42
42
  "@graphql-tools/utils": "^11.0.0",
43
43
  "@playwright/test": "^1.49.0",
44
- "@salesforce/vite-plugin-webapp-experimental": "^1.116.7",
44
+ "@salesforce/vite-plugin-webapp-experimental": "^1.116.9",
45
45
  "@testing-library/jest-dom": "^6.6.3",
46
46
  "@testing-library/react": "^16.1.0",
47
47
  "@testing-library/user-event": "^14.5.2",