@salesforce/templates 66.7.11 → 66.7.12
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/lib/templates/project/agent/md/aab/Local_Info_Agent.agent +24 -24
- package/lib/templates/project/reactexternalapp/CHANGELOG.md +19 -0
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +529 -366
- package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package.json +3 -3
- package/lib/templates/project/reactexternalapp/package.json +1 -1
- package/lib/templates/project/reactexternalapp/scripts/sf-project-setup.mjs +0 -2
- package/lib/templates/project/reactinternalapp/CHANGELOG.md +19 -0
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +522 -359
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package.json +3 -3
- package/lib/templates/project/reactinternalapp/package.json +1 -1
- package/lib/templates/project/reactinternalapp/scripts/sf-project-setup.mjs +0 -2
- package/lib/templates/uiBundles/reactbasic/package-lock.json +522 -359
- package/lib/templates/uiBundles/reactbasic/package.json +3 -3
- package/package.json +5 -5
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"graphql:schema": "node scripts/get-graphql-schema.mjs"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@salesforce/sdk-data": "^1.
|
|
22
|
-
"@salesforce/ui-bundle": "^1.
|
|
21
|
+
"@salesforce/sdk-data": "^1.123.0",
|
|
22
|
+
"@salesforce/ui-bundle": "^1.123.0",
|
|
23
23
|
"@tailwindcss/vite": "^4.1.17",
|
|
24
24
|
"class-variance-authority": "^0.7.1",
|
|
25
25
|
"clsx": "^2.1.1",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@graphql-eslint/eslint-plugin": "^4.1.0",
|
|
46
46
|
"@graphql-tools/utils": "^11.0.0",
|
|
47
47
|
"@playwright/test": "^1.49.0",
|
|
48
|
-
"@salesforce/vite-plugin-ui-bundle": "^1.
|
|
48
|
+
"@salesforce/vite-plugin-ui-bundle": "^1.123.0",
|
|
49
49
|
"@testing-library/jest-dom": "^6.6.3",
|
|
50
50
|
"@testing-library/react": "^16.1.0",
|
|
51
51
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -101,5 +101,3 @@ console.log('UI bundle directory:', uiBundleDir);
|
|
|
101
101
|
|
|
102
102
|
run('npm install', 'npm', ['install', '--registry', 'https://registry.npmjs.org/'], { cwd: uiBundleDir });
|
|
103
103
|
run('npm run build', 'npm', ['run', 'build'], { cwd: uiBundleDir });
|
|
104
|
-
console.log('\n--- Launching dev server (Ctrl+C to stop) ---\n');
|
|
105
|
-
run('npm run dev', 'npm', ['run', 'dev'], { cwd: uiBundleDir });
|