@sfdc-webapps/base-reference-app 1.0.4 → 1.0.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/digitalExperiences/webApplications/base-reference-app/.prettierignore +9 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/.prettierrc +11 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/README.md +73 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/eslint.config.js +113 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/index.html +13 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/package-lock.json +5248 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/package.json +42 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/app.tsx +13 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/icons/book.svg +3 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/icons/copy.svg +4 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/icons/rocket.svg +3 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/icons/star.svg +3 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/images/codey-1.png +0 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/images/codey-2.png +0 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/images/codey-3.png +0 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/assets/images/vibe-codey.svg +194 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/pages/About.tsx +12 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/pages/Home.tsx +12 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/pages/NotFound.tsx +18 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/routes.tsx +23 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/src/styles/global.css +11 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/tsconfig.json +38 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/tsconfig.node.json +13 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/vite-env.d.ts +1 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/vite.config.ts +82 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/vitest-env.d.ts +2 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/vitest.config.ts +11 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/vitest.setup.ts +1 -0
- package/dist/digitalExperiences/webApplications/base-reference-app/webapp.json +12 -0
- package/package.json +4 -1
- package/feature.ts +0 -5
- package/template/webApp/src/routes.tsx +0 -10
- package/tsconfig.app.json +0 -28
- package/tsconfig.json +0 -7
- package/tsconfig.node.json +0 -26
- /package/{template/webApp/src/__inherit__appLayout.tsx → dist/digitalExperiences/webApplications/base-reference-app/src/appLayout.tsx} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom/vitest';
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfdc-webapps/base-reference-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Base reference app template",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "index.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
9
12
|
"publishConfig": {
|
|
10
13
|
"access": "public"
|
|
11
14
|
},
|
package/feature.ts
DELETED
package/tsconfig.app.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
4
|
-
"target": "ES2022",
|
|
5
|
-
"useDefineForClassFields": true,
|
|
6
|
-
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
7
|
-
"module": "ESNext",
|
|
8
|
-
"types": ["vite/client"],
|
|
9
|
-
"skipLibCheck": true,
|
|
10
|
-
|
|
11
|
-
/* Bundler mode */
|
|
12
|
-
"moduleResolution": "bundler",
|
|
13
|
-
"allowImportingTsExtensions": true,
|
|
14
|
-
"verbatimModuleSyntax": true,
|
|
15
|
-
"moduleDetection": "force",
|
|
16
|
-
"noEmit": true,
|
|
17
|
-
"jsx": "react-jsx",
|
|
18
|
-
|
|
19
|
-
/* Linting */
|
|
20
|
-
"strict": true,
|
|
21
|
-
"noUnusedLocals": true,
|
|
22
|
-
"noUnusedParameters": true,
|
|
23
|
-
"erasableSyntaxOnly": true,
|
|
24
|
-
"noFallthroughCasesInSwitch": true,
|
|
25
|
-
"noUncheckedSideEffectImports": true
|
|
26
|
-
},
|
|
27
|
-
"include": ["template/webApp"]
|
|
28
|
-
}
|
package/tsconfig.json
DELETED
package/tsconfig.node.json
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
4
|
-
"target": "ES2023",
|
|
5
|
-
"lib": ["ES2023"],
|
|
6
|
-
"module": "ESNext",
|
|
7
|
-
"types": ["node"],
|
|
8
|
-
"skipLibCheck": true,
|
|
9
|
-
|
|
10
|
-
/* Bundler mode */
|
|
11
|
-
"moduleResolution": "bundler",
|
|
12
|
-
"allowImportingTsExtensions": true,
|
|
13
|
-
"verbatimModuleSyntax": true,
|
|
14
|
-
"moduleDetection": "force",
|
|
15
|
-
"noEmit": true,
|
|
16
|
-
|
|
17
|
-
/* Linting */
|
|
18
|
-
"strict": true,
|
|
19
|
-
"noUnusedLocals": true,
|
|
20
|
-
"noUnusedParameters": true,
|
|
21
|
-
"erasableSyntaxOnly": true,
|
|
22
|
-
"noFallthroughCasesInSwitch": true,
|
|
23
|
-
"noUncheckedSideEffectImports": true
|
|
24
|
-
},
|
|
25
|
-
"include": ["vite.config.ts"]
|
|
26
|
-
}
|