@yamato-daiwa/frontend-vue 0.0.1
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/.idea/.name +1 -0
- package/.idea/Main.iml +12 -0
- package/.idea/file.template.settings.xml +8 -0
- package/.idea/fileTemplates/SVG Icon component.vue +16 -0
- package/.idea/icon.svg +1 -0
- package/.idea/inspectionProfiles/Project_Default.xml +12 -0
- package/.idea/misc.xml +5 -0
- package/.idea/modules.xml +8 -0
- package/.idea/runConfigurations/Generate_TypeScript_Types.xml +12 -0
- package/.idea/runConfigurations/Lint.xml +12 -0
- package/.idea/runConfigurations/Rebuild_Distributable.xml +12 -0
- package/.idea/runConfigurations/Start_Workbenches.xml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.pug-lintrc +4 -0
- package/LICENSE +21 -0
- package/Project.d.ts +10 -0
- package/README.md +21 -0
- package/Source/Functions/Routing/extractVueRouteQueryParameterAsArray.ts +65 -0
- package/Source/Functions/getElementByVueReference.ts +30 -0
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.pug +43 -0
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.ts +230 -0
- package/Source/GUI_Components/Badge/Badge.vue.pug +12 -0
- package/Source/GUI_Components/Badge/Badge.vue.ts +205 -0
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +3 -0
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +74 -0
- package/Source/GUI_Components/ComponentsAuxiliaries.ts +124 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +72 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +323 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +3 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +73 -0
- package/Source/GUI_Components/Controls/InputtableControl.ts +97 -0
- package/Source/GUI_Components/Controls/ValidatableControl.ts +259 -0
- package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +25 -0
- package/Source/GUI_Components/ThemesShowcase.vue +118 -0
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +40 -0
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +15 -0
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +39 -0
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +17 -0
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +46 -0
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +22 -0
- package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +16 -0
- package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +7 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Inbox/InboxIcon.vue +16 -0
- package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +16 -0
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/List/ChecklistIcon.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +16 -0
- package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Half.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Timeline/TimelineIcon.vue +16 -0
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +16 -0
- package/Source/index.ts +210 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +20 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +5 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +22 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +20 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +5 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +93 -0
- package/Workbenches/Source/Workbenches.pug +41 -0
- package/eslint.config.js +29 -0
- package/package.json +50 -0
- package/tsconfig.declarations.json +4 -0
- package/tsconfig.json +24 -0
- package/yda.config.yaml +120 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@yamato-daiwa/frontend-vue",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The adaptation of \"@yamato-daiwa/frontend\" package for Vue framework and also some additional functionality.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"frontend",
|
|
7
|
+
"vue"
|
|
8
|
+
],
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "Yamato Daiwa Co., Ltd.",
|
|
11
|
+
"email": "frontend-es-info@yamato-daiwa.com"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://frontend.yamato-daiwa.com/",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/TokugawaTakeshi/yamato_daiwa-frontend.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/TokugawaTakeshi/yamato_daiwa-frontend/issues",
|
|
21
|
+
"email": "tokugawa.takesi@gmail.com"
|
|
22
|
+
},
|
|
23
|
+
"module": "./Distributable/index.js",
|
|
24
|
+
"types": "./Distributable/index.d.ts",
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@yamato-daiwa/frontend": "2.0.0-beta.6",
|
|
27
|
+
"vue": "~3.5.0",
|
|
28
|
+
"vue-router": "~4.5.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@yamato-daiwa/es-extensions": "1.7.2",
|
|
32
|
+
"vue-facing-decorator": "3.0.4",
|
|
33
|
+
"vue3-slide-up-down": "2.1.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@yamato-daiwa/automation": "0.5.0",
|
|
37
|
+
"@yamato-daiwa/frontend": "2.0.0-beta.6",
|
|
38
|
+
"@yamato-daiwa/style_guides": "0.6.2",
|
|
39
|
+
"rimraf": "6.0.1",
|
|
40
|
+
"typescript": "5.7.3",
|
|
41
|
+
"vue": "3.5.13",
|
|
42
|
+
"vue-router": "4.5.0"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"Rebuild Distributable": "yda build --selectiveExecution Distributable --mode PRODUCTION & npm run \"Generate TypeScript Types\"",
|
|
46
|
+
"Generate TypeScript Types": "tsc --project tsconfig.declarations.json --declaration --emitDeclarationOnly --outDir Distributable",
|
|
47
|
+
"Start Workbenches": "rimraf Workbenches/Output && yda build --selectiveExecution Workbenches --mode LOCAL_DEVELOPMENT",
|
|
48
|
+
"Lint": "eslint ."
|
|
49
|
+
}
|
|
50
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
|
|
4
|
+
"target": "ES2020",
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"allowSyntheticDefaultImports": true,
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
|
|
9
|
+
"strict": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": false, /* Actual for Vue3; see https://github.com/vuejs/vue-next/issues/4668 */
|
|
12
|
+
"experimentalDecorators": true,
|
|
13
|
+
"allowJs": true, /* Actual for Vue3; */
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
|
|
16
|
+
"baseUrl": "./",
|
|
17
|
+
"declaration": true
|
|
18
|
+
},
|
|
19
|
+
"include": [
|
|
20
|
+
"Project.d.ts",
|
|
21
|
+
"Source/**/*",
|
|
22
|
+
"Workbenches/**/*"
|
|
23
|
+
]
|
|
24
|
+
}
|
package/yda.config.yaml
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
projectBuilding:
|
|
2
|
+
|
|
3
|
+
commonSettings:
|
|
4
|
+
|
|
5
|
+
selectiveExecutions:
|
|
6
|
+
|
|
7
|
+
Distributable:
|
|
8
|
+
|
|
9
|
+
tasksAndSourceFilesSelection:
|
|
10
|
+
|
|
11
|
+
ECMA_ScriptLogicProcessing: [ Distributable ]
|
|
12
|
+
|
|
13
|
+
Workbenches:
|
|
14
|
+
|
|
15
|
+
tasksAndSourceFilesSelection:
|
|
16
|
+
|
|
17
|
+
markupProcessing: [ Workbenches ]
|
|
18
|
+
stylesProcessing: [ Workbenches ]
|
|
19
|
+
ECMA_ScriptLogicProcessing: [ Workbenches ]
|
|
20
|
+
|
|
21
|
+
browserLiveReloadingSetupID: Workbenches
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# ━━━ Markup ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
25
|
+
markupProcessing:
|
|
26
|
+
|
|
27
|
+
common:
|
|
28
|
+
buildingModeDependent:
|
|
29
|
+
LOCAL_DEVELOPMENT: { mustResolveResourceReferencesToRelativePaths: true }
|
|
30
|
+
|
|
31
|
+
entryPointsGroups:
|
|
32
|
+
|
|
33
|
+
Workbenches:
|
|
34
|
+
|
|
35
|
+
sourceFilesTopDirectoryRelativePath: Workbenches/Source
|
|
36
|
+
partialsRecognition:
|
|
37
|
+
excludeFilesWithPrefixes: "_"
|
|
38
|
+
excludeSubdirectoriesWithPrefixes: "_"
|
|
39
|
+
|
|
40
|
+
buildingModeDependent:
|
|
41
|
+
LOCAL_DEVELOPMENT:
|
|
42
|
+
outputTopDirectoryRelativePath: Workbenches/Build
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# ━━━ Styles ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
46
|
+
stylesProcessing:
|
|
47
|
+
|
|
48
|
+
entryPointsGroups:
|
|
49
|
+
|
|
50
|
+
Workbenches:
|
|
51
|
+
|
|
52
|
+
sourceFilesTopDirectoryRelativePath: Workbenches/Source
|
|
53
|
+
|
|
54
|
+
partialsRecognition:
|
|
55
|
+
excludeFilesWithPrefixes: "_"
|
|
56
|
+
excludeSubdirectoriesWithPrefixes: "_"
|
|
57
|
+
|
|
58
|
+
buildingModeDependent:
|
|
59
|
+
LOCAL_DEVELOPMENT:
|
|
60
|
+
outputTopDirectoryRelativePath: Workbenches/Build
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
# ━━━ ECMAScript Logic Processing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
64
|
+
ECMA_ScriptLogicProcessing:
|
|
65
|
+
|
|
66
|
+
entryPointsGroups:
|
|
67
|
+
|
|
68
|
+
Distributable:
|
|
69
|
+
|
|
70
|
+
singleEntryPointSourceFileRelativePath: Source/index.ts
|
|
71
|
+
|
|
72
|
+
targetRuntime:
|
|
73
|
+
type: BROWSER
|
|
74
|
+
|
|
75
|
+
distributing:
|
|
76
|
+
exposingOfExportsFromEntryPoints:
|
|
77
|
+
mustExpose: true
|
|
78
|
+
externalizingDependencies: [ @yamato-daiwa/frontend, vue, vue-router ]
|
|
79
|
+
typeScriptTypesDeclarations:
|
|
80
|
+
mustGenerate: true
|
|
81
|
+
|
|
82
|
+
buildingModeDependent:
|
|
83
|
+
|
|
84
|
+
LOCAL_DEVELOPMENT:
|
|
85
|
+
outputTopDirectoryRelativePath: Distributable
|
|
86
|
+
|
|
87
|
+
PRODUCTION:
|
|
88
|
+
outputTopDirectoryRelativePath: Distributable
|
|
89
|
+
revisioning: { disable: true }
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
Workbenches:
|
|
93
|
+
|
|
94
|
+
sourceFilesTopDirectoryRelativePath: Workbenches/Source
|
|
95
|
+
|
|
96
|
+
partialsRecognition:
|
|
97
|
+
excludeFilesWithPrefixes: "_"
|
|
98
|
+
excludeSubdirectoriesWithPrefixes: "_"
|
|
99
|
+
|
|
100
|
+
targetRuntime:
|
|
101
|
+
type: BROWSER
|
|
102
|
+
|
|
103
|
+
buildingModeDependent:
|
|
104
|
+
LOCAL_DEVELOPMENT:
|
|
105
|
+
outputTopDirectoryRelativePath: Workbenches/Build
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
# ━━━ Browser Live Reloading ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
109
|
+
browserLiveReloading:
|
|
110
|
+
|
|
111
|
+
setups:
|
|
112
|
+
|
|
113
|
+
Workbenches:
|
|
114
|
+
|
|
115
|
+
localServer:
|
|
116
|
+
|
|
117
|
+
rootDirectoryRelativePath: Workbenches/Build
|
|
118
|
+
customStartingFileNameWithExtension: Workbenches.html
|
|
119
|
+
|
|
120
|
+
openInBrowsers: chrome
|