@vc-shell/create-vc-app 2.5.0-pr322.fbf6d33 → 2.5.0-pr323.ada2f14

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.
Files changed (37) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/templates/dynamic-module/_gitignore +4 -4
  3. package/dist/templates/dynamic-module/tsconfig.json +10 -10
  4. package/dist/templates/dynamic-module/vite.config.mts.ejs +3 -3
  5. package/dist/templates/module/composables/index.ts.ejs +2 -2
  6. package/dist/templates/module/locales/index.ts +2 -2
  7. package/dist/templates/module/pages/index.ts.ejs +2 -2
  8. package/dist/templates/sample-module/composables/index.ts +2 -2
  9. package/dist/templates/sample-module/locales/index.ts +2 -2
  10. package/dist/templates/sample-module/pages/index.ts +2 -2
  11. package/dist/templates/sample-module/sample-data/index.ts +2 -2
  12. package/dist/templates/sample-module/sample-data/methods.ts +65 -65
  13. package/dist/templates/standalone/LICENSE +12 -12
  14. package/dist/templates/standalone/README.md +54 -54
  15. package/dist/templates/standalone/_browserslistrc +3 -3
  16. package/dist/templates/standalone/_commitlintrc.json +3 -3
  17. package/dist/templates/standalone/_editorconfig +22 -22
  18. package/dist/templates/standalone/_env.ejs +3 -3
  19. package/dist/templates/standalone/_env.local.ejs +1 -1
  20. package/dist/templates/standalone/_github/COMMIT_CONVENTION.md +91 -91
  21. package/dist/templates/standalone/_github/PULL_REQUEST_TEMPLATE.md +11 -11
  22. package/dist/templates/standalone/_gitignore +71 -71
  23. package/dist/templates/standalone/_prettierignore +4 -4
  24. package/dist/templates/standalone/_prettierrc +4 -4
  25. package/dist/templates/standalone/_vscode/extensions.json +12 -12
  26. package/dist/templates/standalone/_vscode/settings.json +9 -9
  27. package/dist/templates/standalone/index.html.ejs +27 -27
  28. package/dist/templates/standalone/postcss.config.cjs +6 -6
  29. package/dist/templates/standalone/public/assets/logo-white.svg +21 -21
  30. package/dist/templates/standalone/public/assets/logo.svg +8 -8
  31. package/dist/templates/standalone/public/img/icons/safari-pinned-tab.svg +32 -32
  32. package/dist/templates/standalone/src/composables/index.ts +1 -1
  33. package/dist/templates/standalone/src/env.d.ts +9 -9
  34. package/dist/templates/standalone/src/locales/index.ts +2 -2
  35. package/dist/templates/standalone/src/router/index.ts +10 -10
  36. package/dist/templates/standalone/tailwind.config.ts +7 -7
  37. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import P from "prompts";
8
8
  import i from "node:fs";
9
9
  import R from "ejs";
10
10
  import _ from "prettier";
11
- const q = "2.5.0-pr322.fbf6d33", W = {
11
+ const q = "2.5.0-pr323.ada2f14", W = {
12
12
  version: q
13
13
  };
14
14
  function v(e) {
@@ -1,4 +1,4 @@
1
- node_modules
2
- dist
3
- .DS_Store
4
- *.local
1
+ node_modules
2
+ dist
3
+ .DS_Store
4
+ *.local
@@ -1,10 +1,10 @@
1
- {
2
- "extends": "@vc-shell/ts-config/tsconfig.json",
3
- "compilerOptions": {
4
- "baseUrl": ".",
5
- "outDir": "dist",
6
- "rootDir": "src",
7
- "types": ["vite/client", "@vc-shell/framework/globals"]
8
- },
9
- "include": ["./src/**/*.ts", "./src/**/*.vue", "./src/**/*.json"]
10
- }
1
+ {
2
+ "extends": "@vc-shell/ts-config/tsconfig.json",
3
+ "compilerOptions": {
4
+ "baseUrl": ".",
5
+ "outDir": "dist",
6
+ "rootDir": "src",
7
+ "types": ["vite/client", "@vc-shell/framework/globals"]
8
+ },
9
+ "include": ["./src/**/*.ts", "./src/**/*.vue", "./src/**/*.json"]
10
+ }
@@ -1,3 +1,3 @@
1
- import { getDynamicModuleConfiguration } from "@vc-shell/mf-module";
2
-
3
- export default getDynamicModuleConfiguration();
1
+ import { getDynamicModuleConfiguration } from "@vc-shell/mf-module";
2
+
3
+ export default getDynamicModuleConfiguration();
@@ -1,2 +1,2 @@
1
- export { default as use<%- ModuleNamePascalCase %>List } from "./useList";
2
- export { default as use<%- ModuleNamePascalCase %>Details } from "./useDetails";
1
+ export { default as use<%- ModuleNamePascalCase %>List } from "./useList";
2
+ export { default as use<%- ModuleNamePascalCase %>Details } from "./useDetails";
@@ -1,2 +1,2 @@
1
- import * as en from "./en.json";
2
- export { en };
1
+ import * as en from "./en.json";
2
+ export { en };
@@ -1,2 +1,2 @@
1
- export { default as <%- ModuleNamePascalCase %>List } from "./list.vue";
2
- export { default as <%- ModuleNamePascalCase %>Details } from "./details.vue";
1
+ export { default as <%- ModuleNamePascalCase %>List } from "./list.vue";
2
+ export { default as <%- ModuleNamePascalCase %>Details } from "./details.vue";
@@ -1,2 +1,2 @@
1
- export { default as useList } from "./useList";
2
- export { default as useDetails } from "./useDetails";
1
+ export { default as useList } from "./useList";
2
+ export { default as useDetails } from "./useDetails";
@@ -1,2 +1,2 @@
1
- import * as en from "./en.json";
2
- export { en };
1
+ import * as en from "./en.json";
2
+ export { en };
@@ -1,2 +1,2 @@
1
- export { default as List } from "./list.vue";
2
- export { default as Details } from "./details.vue";
1
+ export { default as List } from "./list.vue";
2
+ export { default as Details } from "./details.vue";
@@ -1,2 +1,2 @@
1
- export * from "./constants";
2
- export * from "./methods";
1
+ export * from "./constants";
2
+ export * from "./methods";
@@ -1,65 +1,65 @@
1
- import { type MockedItem, type MockedQuery, mockedItems } from ".";
2
-
3
- export function loadMockItemsList(query: MockedQuery) {
4
- return new Promise((resolve: (value: MockedItem[]) => void) => {
5
- setTimeout(() => resolve(mockedItems), 1000);
6
- }).then((res) => {
7
- res = res.filter((x) => {
8
- if (query.keyword) {
9
- return x.name.toLowerCase().includes(query.keyword.toLowerCase());
10
- }
11
- return true;
12
- });
13
-
14
- return { results: res, totalCount: res.length };
15
- });
16
- }
17
-
18
- export async function loadMockItem(args?: { id: string }) {
19
- return new Promise((resolve: (value: MockedItem) => void) => {
20
- setTimeout(() => {
21
- const findMockedItem = mockedItems.find((x) => x.id === args?.id);
22
-
23
- if (findMockedItem) resolve({ ...findMockedItem });
24
- }, 1000);
25
- });
26
- }
27
-
28
- export async function removeMockItem(args: { id: string }) {
29
- new Promise((resolve: (value: boolean) => void) => {
30
- setTimeout(() => {
31
- const index = mockedItems.findIndex((x) => x.id === args.id);
32
-
33
- if (index > -1) {
34
- mockedItems.splice(index, 1);
35
- resolve(true);
36
- } else {
37
- resolve(false);
38
- }
39
- }, 1000);
40
- });
41
- }
42
-
43
- export async function addNewMockItem(args: MockedItem) {
44
- return new Promise((resolve: (value: MockedItem) => void) => {
45
- setTimeout(() => {
46
- mockedItems.push(args);
47
- resolve(args);
48
- }, 1000);
49
- });
50
- }
51
-
52
- export async function updateMockItem(args: MockedItem) {
53
- return new Promise((resolve: (value: MockedItem) => void) => {
54
- setTimeout(() => {
55
- const index = mockedItems.findIndex((x) => x.id === args.id);
56
-
57
- if (index > -1) {
58
- mockedItems[index] = args;
59
- resolve(args);
60
- } else {
61
- resolve(args);
62
- }
63
- }, 1000);
64
- });
65
- }
1
+ import { type MockedItem, type MockedQuery, mockedItems } from ".";
2
+
3
+ export function loadMockItemsList(query: MockedQuery) {
4
+ return new Promise((resolve: (value: MockedItem[]) => void) => {
5
+ setTimeout(() => resolve(mockedItems), 1000);
6
+ }).then((res) => {
7
+ res = res.filter((x) => {
8
+ if (query.keyword) {
9
+ return x.name.toLowerCase().includes(query.keyword.toLowerCase());
10
+ }
11
+ return true;
12
+ });
13
+
14
+ return { results: res, totalCount: res.length };
15
+ });
16
+ }
17
+
18
+ export async function loadMockItem(args?: { id: string }) {
19
+ return new Promise((resolve: (value: MockedItem) => void) => {
20
+ setTimeout(() => {
21
+ const findMockedItem = mockedItems.find((x) => x.id === args?.id);
22
+
23
+ if (findMockedItem) resolve({ ...findMockedItem });
24
+ }, 1000);
25
+ });
26
+ }
27
+
28
+ export async function removeMockItem(args: { id: string }) {
29
+ new Promise((resolve: (value: boolean) => void) => {
30
+ setTimeout(() => {
31
+ const index = mockedItems.findIndex((x) => x.id === args.id);
32
+
33
+ if (index > -1) {
34
+ mockedItems.splice(index, 1);
35
+ resolve(true);
36
+ } else {
37
+ resolve(false);
38
+ }
39
+ }, 1000);
40
+ });
41
+ }
42
+
43
+ export async function addNewMockItem(args: MockedItem) {
44
+ return new Promise((resolve: (value: MockedItem) => void) => {
45
+ setTimeout(() => {
46
+ mockedItems.push(args);
47
+ resolve(args);
48
+ }, 1000);
49
+ });
50
+ }
51
+
52
+ export async function updateMockItem(args: MockedItem) {
53
+ return new Promise((resolve: (value: MockedItem) => void) => {
54
+ setTimeout(() => {
55
+ const index = mockedItems.findIndex((x) => x.id === args.id);
56
+
57
+ if (index > -1) {
58
+ mockedItems[index] = args;
59
+ resolve(args);
60
+ } else {
61
+ resolve(args);
62
+ }
63
+ }, 1000);
64
+ });
65
+ }
@@ -1,12 +1,12 @@
1
- Copyright (c) Virto Solutions LTD. All rights reserved.
2
-
3
- Licensed under the Virto Commerce Open Software License (the "License"); you
4
- may not use this file except in compliance with the License. You may
5
- obtain a copy of the License at
6
-
7
- https://virtocommerce.com/open-source-license
8
-
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12
- implied.
1
+ Copyright (c) Virto Solutions LTD. All rights reserved.
2
+
3
+ Licensed under the Virto Commerce Open Software License (the "License"); you
4
+ may not use this file except in compliance with the License. You may
5
+ obtain a copy of the License at
6
+
7
+ https://virtocommerce.com/open-source-license
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12
+ implied.
@@ -1,54 +1,54 @@
1
- # VirtoCommerce Vue3 Frontend for specialized back-office applications
2
-
3
- ## Technologies used
4
-
5
- - **Vue3.** Progressive frontend framework with its key features allows to build fast applications.
6
- - **Typescript.** All components and composables have type definitions, so IDE can help you to build clean and working code.
7
- - **TailwindCSS.** The most popular and growing CSS framework providing wonderful flexible structure to speed up styling.
8
- - **Husky + ESLint + Prettier.** Autoformat, check and fix your code and prevent ugly codestyle within repository.
9
- - **Vite.** It is faster than Webpack. Really FASTER. Use it to develop with HMR benefits and to build for production.
10
-
11
- ## Architecture
12
-
13
- ```text
14
- ├─ public // Static assets
15
- │ ├─ assets // Static images used inside the application.
16
- │ └─ img
17
- │ └─ icons // Icons used for favicons, PWA, etc.
18
- ├─ src
19
- │ ├─ api_client // Generated API clients folder
20
- │ │ └─...
21
- │ ├─ components // Universal Vue components
22
- │ │ └─...
23
- │ ├─ config // Application extras config files
24
- │ │ └─ push-hub.ts // SignalR config file
25
- │ ├─ locales // Locale files used to provide translated content
26
- │ │ └─ en.json
27
- │ ├─ modules // The collection of custom modules
28
- │ │ └─ ... // Module folder
29
- │ │ ├─ components // The collection of components specific for this module
30
- │ │ ├─ composables // The collection of shared logic written using Composable API pattern.
31
- │ │ ├─ locales // Locale files used to provide translated content specific for this module
32
- │ │ ├─ pages // Set of module pages used within Application router
33
- │ │ └─ index.ts // Module entry point
34
- │ ├─ pages // Set of application pages used within Application router.
35
- │ │ └─...
36
- │ ├─ router // SPA routing configuration
37
- │ │ └─...
38
- │ ├─ styles // Extras application style files
39
- │ │ └─ index.scss // Tailwind initialization file
40
- │ └─ types // Typescript .d.ts files
41
- ```
42
-
43
- ## Getting started
44
-
45
- ```bash
46
- # install and configure package dependencies and git hooks
47
- $ yarn
48
-
49
- # build application
50
- $ yarn build
51
-
52
- # start application with hot reload at localhost:8080
53
- $ yarn serve
54
- ```
1
+ # VirtoCommerce Vue3 Frontend for specialized back-office applications
2
+
3
+ ## Technologies used
4
+
5
+ - **Vue3.** Progressive frontend framework with its key features allows to build fast applications.
6
+ - **Typescript.** All components and composables have type definitions, so IDE can help you to build clean and working code.
7
+ - **TailwindCSS.** The most popular and growing CSS framework providing wonderful flexible structure to speed up styling.
8
+ - **Husky + ESLint + Prettier.** Autoformat, check and fix your code and prevent ugly codestyle within repository.
9
+ - **Vite.** It is faster than Webpack. Really FASTER. Use it to develop with HMR benefits and to build for production.
10
+
11
+ ## Architecture
12
+
13
+ ```text
14
+ ├─ public // Static assets
15
+ │ ├─ assets // Static images used inside the application.
16
+ │ └─ img
17
+ │ └─ icons // Icons used for favicons, PWA, etc.
18
+ ├─ src
19
+ │ ├─ api_client // Generated API clients folder
20
+ │ │ └─...
21
+ │ ├─ components // Universal Vue components
22
+ │ │ └─...
23
+ │ ├─ config // Application extras config files
24
+ │ │ └─ push-hub.ts // SignalR config file
25
+ │ ├─ locales // Locale files used to provide translated content
26
+ │ │ └─ en.json
27
+ │ ├─ modules // The collection of custom modules
28
+ │ │ └─ ... // Module folder
29
+ │ │ ├─ components // The collection of components specific for this module
30
+ │ │ ├─ composables // The collection of shared logic written using Composable API pattern.
31
+ │ │ ├─ locales // Locale files used to provide translated content specific for this module
32
+ │ │ ├─ pages // Set of module pages used within Application router
33
+ │ │ └─ index.ts // Module entry point
34
+ │ ├─ pages // Set of application pages used within Application router.
35
+ │ │ └─...
36
+ │ ├─ router // SPA routing configuration
37
+ │ │ └─...
38
+ │ ├─ styles // Extras application style files
39
+ │ │ └─ index.scss // Tailwind initialization file
40
+ │ └─ types // Typescript .d.ts files
41
+ ```
42
+
43
+ ## Getting started
44
+
45
+ ```bash
46
+ # install and configure package dependencies and git hooks
47
+ $ yarn
48
+
49
+ # build application
50
+ $ yarn build
51
+
52
+ # start application with hot reload at localhost:8080
53
+ $ yarn serve
54
+ ```
@@ -1,3 +1,3 @@
1
- > 1%
2
- last 2 versions
3
- not dead
1
+ > 1%
2
+ last 2 versions
3
+ not dead
@@ -1,3 +1,3 @@
1
- {
2
- "extends": ["@commitlint/config-conventional"]
3
- }
1
+ {
2
+ "extends": ["@commitlint/config-conventional"]
3
+ }
@@ -1,22 +1,22 @@
1
- # top-most EditorConfig file
2
- root = true
3
-
4
- # Global rules, override on case-by-case basis
5
- [*]
6
- charset = utf-8
7
- indent_style = space
8
- max_line_length = 120
9
- tab_width = 2
10
- end_of_line = lf
11
- insert_final_newline = true
12
- trim_trailing_whitespace = true
13
-
14
- [*.{vue,js,ts,scss}]
15
- quote_type = double
16
-
17
- [*.md]
18
- max_line_length = off
19
- trim_trailing_whitespace = false
20
-
21
- [*.svg]
22
- insert_final_newline = false
1
+ # top-most EditorConfig file
2
+ root = true
3
+
4
+ # Global rules, override on case-by-case basis
5
+ [*]
6
+ charset = utf-8
7
+ indent_style = space
8
+ max_line_length = 120
9
+ tab_width = 2
10
+ end_of_line = lf
11
+ insert_final_newline = true
12
+ trim_trailing_whitespace = true
13
+
14
+ [*.{vue,js,ts,scss}]
15
+ quote_type = double
16
+
17
+ [*.md]
18
+ max_line_length = off
19
+ trim_trailing_whitespace = false
20
+
21
+ [*.svg]
22
+ insert_final_newline = false
@@ -1,3 +1,3 @@
1
- APP_BASE_PATH=<%- BasePath %>
2
- APP_I18N_LOCALE=en
3
- APP_I18N_FALLBACK_LOCALE=en
1
+ APP_BASE_PATH=<%- BasePath %>
2
+ APP_I18N_LOCALE=en
3
+ APP_I18N_FALLBACK_LOCALE=en
@@ -1 +1 @@
1
- #APP_PLATFORM_URL=add_platform_url_here
1
+ #APP_PLATFORM_URL=add_platform_url_here
@@ -1,91 +1,91 @@
1
- # Git Commit Message Convention
2
-
3
- ## TL;DR
4
-
5
- Messages must be matched by the following regex:
6
-
7
- ```js
8
- /^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|ci|chore|types)(\(.+\))?: .{1,50}/;
9
- ```
10
-
11
- ## Examples
12
-
13
- Appears under "Features" header, `ui-kit` subheader:
14
-
15
- ```text
16
- feat(ui-kit): add 'comments' option
17
- ```
18
-
19
- Appears under "Bug Fixes" header, `shell` subheader, with a link to issue #28:
20
-
21
- ```text
22
- fix(shell): handle events on blur
23
-
24
- close #28
25
- ```
26
-
27
- Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
28
-
29
- ```text
30
- perf(api-client): improve vdom diffing by removing 'foo' option
31
-
32
- BREAKING CHANGE: The 'foo' option has been removed.
33
- ```
34
-
35
- The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
36
-
37
- ```text
38
- revert: feat(ui-kit): add 'comments' option
39
-
40
- This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
41
- ```
42
-
43
- ## Full Message Format
44
-
45
- A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
46
-
47
- ```text
48
- <type>(<scope>): <subject>
49
- <BLANK LINE>
50
- <body>
51
- <BLANK LINE>
52
- <footer>
53
- ```
54
-
55
- The **header** is mandatory and the **scope** of the header is optional.
56
-
57
- A `!` MAY be appended prior to the `:` in the type/scope prefix, to further draw attention to breaking changes. `BREAKING CHANGE:` description MUST also be included in the body or footer, along with the `!` in the prefix.
58
-
59
- ### Revert
60
-
61
- If the commit reverts a previous commit, it should begin with `revert:`, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
62
-
63
- ### Type
64
-
65
- If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
66
-
67
- Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
68
-
69
- ### Scope
70
-
71
- The scope could be any valid workspace package name. For example `shell`, `ui-kit`, `api-client`, etc...
72
-
73
- ### Subject
74
-
75
- The subject contains succinct description of the change:
76
-
77
- - use the imperative, present tense: "change" not "changed" nor "changes"
78
- - don't capitalize first letter
79
- - no dot (.) at the end
80
-
81
- ### Body
82
-
83
- Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
84
- The body should include the motivation for the change and contrast this with previous behavior.
85
-
86
- ### Footer
87
-
88
- The footer should contain any information about **Breaking Changes** and is also the place to
89
- reference GitHub issues that this commit **Closes**.
90
-
91
- **Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
1
+ # Git Commit Message Convention
2
+
3
+ ## TL;DR
4
+
5
+ Messages must be matched by the following regex:
6
+
7
+ ```js
8
+ /^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|ci|chore|types)(\(.+\))?: .{1,50}/;
9
+ ```
10
+
11
+ ## Examples
12
+
13
+ Appears under "Features" header, `ui-kit` subheader:
14
+
15
+ ```text
16
+ feat(ui-kit): add 'comments' option
17
+ ```
18
+
19
+ Appears under "Bug Fixes" header, `shell` subheader, with a link to issue #28:
20
+
21
+ ```text
22
+ fix(shell): handle events on blur
23
+
24
+ close #28
25
+ ```
26
+
27
+ Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation:
28
+
29
+ ```text
30
+ perf(api-client): improve vdom diffing by removing 'foo' option
31
+
32
+ BREAKING CHANGE: The 'foo' option has been removed.
33
+ ```
34
+
35
+ The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header.
36
+
37
+ ```text
38
+ revert: feat(ui-kit): add 'comments' option
39
+
40
+ This reverts commit 667ecc1654a317a13331b17617d973392f415f02.
41
+ ```
42
+
43
+ ## Full Message Format
44
+
45
+ A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:
46
+
47
+ ```text
48
+ <type>(<scope>): <subject>
49
+ <BLANK LINE>
50
+ <body>
51
+ <BLANK LINE>
52
+ <footer>
53
+ ```
54
+
55
+ The **header** is mandatory and the **scope** of the header is optional.
56
+
57
+ A `!` MAY be appended prior to the `:` in the type/scope prefix, to further draw attention to breaking changes. `BREAKING CHANGE:` description MUST also be included in the body or footer, along with the `!` in the prefix.
58
+
59
+ ### Revert
60
+
61
+ If the commit reverts a previous commit, it should begin with `revert:`, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
62
+
63
+ ### Type
64
+
65
+ If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
66
+
67
+ Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.
68
+
69
+ ### Scope
70
+
71
+ The scope could be any valid workspace package name. For example `shell`, `ui-kit`, `api-client`, etc...
72
+
73
+ ### Subject
74
+
75
+ The subject contains succinct description of the change:
76
+
77
+ - use the imperative, present tense: "change" not "changed" nor "changes"
78
+ - don't capitalize first letter
79
+ - no dot (.) at the end
80
+
81
+ ### Body
82
+
83
+ Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
84
+ The body should include the motivation for the change and contrast this with previous behavior.
85
+
86
+ ### Footer
87
+
88
+ The footer should contain any information about **Breaking Changes** and is also the place to
89
+ reference GitHub issues that this commit **Closes**.
90
+
91
+ **Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.
@@ -1,11 +1,11 @@
1
- # Project Task
2
-
3
- <!-- paste a link to related issue -->
4
-
5
- Closes #
6
-
7
- ## Scope of work
8
-
9
- <!-- describe what you did -->
10
-
11
- ## Checklist
1
+ # Project Task
2
+
3
+ <!-- paste a link to related issue -->
4
+
5
+ Closes #
6
+
7
+ ## Scope of work
8
+
9
+ <!-- describe what you did -->
10
+
11
+ ## Checklist
@@ -1,71 +1,71 @@
1
- # OS Specific
2
- .DS_Store
3
- .DS_Store?
4
- ._*
5
- .Spotlight-V100
6
- .Trashes
7
- ehthumbs.db
8
- Thumbs.db
9
-
10
- # IDE Specific
11
- nbproject
12
- .~lock.*
13
- .buildpath
14
- .idea
15
- .project
16
- .settings
17
- composer.lock
18
- *.sublime-workspace
19
- *.suo
20
- *.ntvs*
21
- *.njsproj
22
- *.sln
23
- *.sw?
24
-
25
- # Project Specific
26
- node_modules
27
- *.log
28
- /lib
29
- tmp
30
- .changelog
31
- coverage/
32
- .nyc_output/
33
- .eslintcache
34
-
35
- # local env files
36
- .env.local
37
- .env.*.local
38
-
39
- # compiled output
40
- dist/
41
- storybook-static
42
- *.tsbuildinfo
43
-
44
- # IDEs and editors
45
- /.idea
46
- .project
47
- .classpath
48
- .c9/
49
- *.launch
50
-
51
- # IDE - VSCode
52
- .vscode/*
53
- !.vscode/settings.json
54
- !.vscode/tasks.json
55
- !.vscode/launch.json
56
- !.vscode/extensions.json
57
- .history/*
58
-
59
- # Visual Studio 2015/2017 cache/options directory
60
- .vs/*
61
-
62
- # Temporary
63
- package-lock.json
64
-
65
- .pnp.*
66
- .yarn/*
67
- !.yarn/patches
68
- !.yarn/plugins
69
- !.yarn/releases
70
- !.yarn/sdks
71
- !.yarn/versions
1
+ # OS Specific
2
+ .DS_Store
3
+ .DS_Store?
4
+ ._*
5
+ .Spotlight-V100
6
+ .Trashes
7
+ ehthumbs.db
8
+ Thumbs.db
9
+
10
+ # IDE Specific
11
+ nbproject
12
+ .~lock.*
13
+ .buildpath
14
+ .idea
15
+ .project
16
+ .settings
17
+ composer.lock
18
+ *.sublime-workspace
19
+ *.suo
20
+ *.ntvs*
21
+ *.njsproj
22
+ *.sln
23
+ *.sw?
24
+
25
+ # Project Specific
26
+ node_modules
27
+ *.log
28
+ /lib
29
+ tmp
30
+ .changelog
31
+ coverage/
32
+ .nyc_output/
33
+ .eslintcache
34
+
35
+ # local env files
36
+ .env.local
37
+ .env.*.local
38
+
39
+ # compiled output
40
+ dist/
41
+ storybook-static
42
+ *.tsbuildinfo
43
+
44
+ # IDEs and editors
45
+ /.idea
46
+ .project
47
+ .classpath
48
+ .c9/
49
+ *.launch
50
+
51
+ # IDE - VSCode
52
+ .vscode/*
53
+ !.vscode/settings.json
54
+ !.vscode/tasks.json
55
+ !.vscode/launch.json
56
+ !.vscode/extensions.json
57
+ .history/*
58
+
59
+ # Visual Studio 2015/2017 cache/options directory
60
+ .vs/*
61
+
62
+ # Temporary
63
+ package-lock.json
64
+
65
+ .pnp.*
66
+ .yarn/*
67
+ !.yarn/patches
68
+ !.yarn/plugins
69
+ !.yarn/releases
70
+ !.yarn/sdks
71
+ !.yarn/versions
@@ -1,4 +1,4 @@
1
- node_modules
2
- dist
3
- *.js
4
- api-client.ts
1
+ node_modules
2
+ dist
3
+ *.js
4
+ api-client.ts
@@ -1,4 +1,4 @@
1
- {
2
- "singleAttributePerLine": true,
3
- "endOfLine": "auto"
4
- }
1
+ {
2
+ "singleAttributePerLine": true,
3
+ "endOfLine": "auto"
4
+ }
@@ -1,12 +1,12 @@
1
- {
2
- "recommendations": [
3
- "editorconfig.editorconfig",
4
- "dbaeumer.vscode-eslint",
5
- "csstools.postcss",
6
- "esbenp.prettier-vscode",
7
- "bradlc.vscode-tailwindcss",
8
- "vue.volar",
9
- "lokalise.i18n-ally"
10
- ],
11
- "unwantedRecommendations": ["octref.vetur"]
12
- }
1
+ {
2
+ "recommendations": [
3
+ "editorconfig.editorconfig",
4
+ "dbaeumer.vscode-eslint",
5
+ "csstools.postcss",
6
+ "esbenp.prettier-vscode",
7
+ "bradlc.vscode-tailwindcss",
8
+ "vue.volar",
9
+ "lokalise.i18n-ally"
10
+ ],
11
+ "unwantedRecommendations": ["octref.vetur"]
12
+ }
@@ -1,9 +1,9 @@
1
- {
2
- "editor.codeActionsOnSave": {
3
- "source.fixAll.eslint": true
4
- },
5
- "files.eol": "\r\n",
6
- "eslint.validate": ["vue", "javascript"],
7
- "i18n-ally.localesPaths": ["src/locales"],
8
- "typescript.preferences.importModuleSpecifier": "relative"
9
- }
1
+ {
2
+ "editor.codeActionsOnSave": {
3
+ "source.fixAll.eslint": true
4
+ },
5
+ "files.eol": "\r\n",
6
+ "eslint.validate": ["vue", "javascript"],
7
+ "i18n-ally.localesPaths": ["src/locales"],
8
+ "typescript.preferences.importModuleSpecifier": "relative"
9
+ }
@@ -1,27 +1,27 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
-
4
- <head>
5
- <meta charset="utf-8">
6
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
- <!-- No maximum-scale / user-scalable=no: pinch-zoom must stay available (WCAG 1.4.4).
8
- The framework keeps <html lang> in sync with the active locale at runtime. -->
9
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
- <link rel="icon" href="img/icons/favicon.ico">
11
- <link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon.png">
12
- <link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
13
- <link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
14
- <meta name="theme-color" content="#ffffff">
15
- <title><%- AppNameSentenceCase %></title>
16
- </head>
17
-
18
- <body>
19
- <noscript>
20
- <strong>Please enable JavaScript to continue.</strong>
21
- </noscript>
22
- <div id="app"></div>
23
- <script type="module" src="/src/main.ts"></script>
24
- <!-- built files will be auto injected -->
25
- </body>
26
-
27
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <!-- No maximum-scale / user-scalable=no: pinch-zoom must stay available (WCAG 1.4.4).
8
+ The framework keeps <html lang> in sync with the active locale at runtime. -->
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
+ <link rel="icon" href="img/icons/favicon.ico">
11
+ <link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon.png">
12
+ <link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
13
+ <link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
14
+ <meta name="theme-color" content="#ffffff">
15
+ <title><%- AppNameSentenceCase %></title>
16
+ </head>
17
+
18
+ <body>
19
+ <noscript>
20
+ <strong>Please enable JavaScript to continue.</strong>
21
+ </noscript>
22
+ <div id="app"></div>
23
+ <script type="module" src="/src/main.ts"></script>
24
+ <!-- built files will be auto injected -->
25
+ </body>
26
+
27
+ </html>
@@ -1,6 +1,6 @@
1
- module.exports = {
2
- plugins: {
3
- tailwindcss: {},
4
- autoprefixer: {},
5
- },
6
- };
1
+ module.exports = {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ autoprefixer: {},
5
+ },
6
+ };
@@ -1,21 +1,21 @@
1
- <svg width="252" height="81" viewBox="0 0 252 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_d)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.5982 11L22.7992 36.5H34.5982L46.3976 11H34.5982Z" fill="#CCCCCC"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11 11L22.7992 36.5H34.5984L22.7992 11H11Z" fill="#FF4A4A"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M63.441 41.6C63.441 43.7127 61.6798 45.425 59.5079 45.425C57.3355 45.425 55.5748 43.7127 55.5748 41.6C55.5748 39.4874 57.3355 37.775 59.5079 37.775C61.6798 37.775 63.441 39.4874 63.441 41.6Z" fill="#FF4A4A"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 44.15H38.5315C39.9747 54.1672 48.8288 61.9016 59.5079 61.9016V50.3871C55.3794 50.3871 51.8732 47.7685 50.6321 44.15Z" fill="#FFC10D"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 39.05C51.8732 35.4115 55.3794 32.7784 59.5079 32.7784V21.2C48.8288 21.2 39.9747 28.9773 38.5315 39.05H50.6321Z" fill="#FFC10D"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M89.116 30.176L95.7446 14.672H97.3108L89.4237 32.896H88.8364L80.9213 14.672H82.4875L89.116 30.176ZM101.142 14.672H102.597V32.624H101.142V14.672ZM115.686 24.464L121.923 32.624H120.217L114.008 24.5728H109.505V32.624H108.051V14.672H114.316C116.022 14.672 117.392 15.1344 118.399 16.0592C119.406 16.984 119.909 18.1536 119.909 19.5952C119.909 22.0976 118.343 24.0016 115.686 24.464ZM114.26 15.9504H109.505V23.2944H114.26C116.917 23.2944 118.399 21.7984 118.399 19.6224C118.399 17.4464 116.917 15.9504 114.26 15.9504ZM122.454 14.672H137.418V15.9504H130.649V32.624H129.195V15.9504H122.454V14.672ZM148.241 14.4C150.87 14.4 153.108 15.2976 154.954 17.0656C156.8 18.8336 157.723 21.0368 157.723 23.648C157.723 26.232 156.8 28.4352 154.954 30.2304C153.108 31.9984 150.87 32.896 148.241 32.896C145.584 32.896 143.347 31.9984 141.529 30.2304C139.711 28.4352 138.788 26.232 138.788 23.648C138.788 21.0368 139.711 18.8336 141.529 17.0656C143.347 15.2976 145.584 14.4 148.241 14.4ZM148.269 15.7056C146.004 15.7056 144.102 16.4672 142.592 17.9904C141.082 19.4864 140.326 21.3632 140.326 23.6208C140.326 25.8784 141.082 27.7552 142.592 29.2784C144.102 30.8016 146.004 31.5632 148.269 31.5632C150.535 31.5632 152.409 30.8016 153.919 29.2784C155.429 27.7552 156.185 25.8784 156.185 23.6208C156.185 21.3904 155.429 19.5136 153.891 17.9904C152.381 16.4672 150.507 15.7056 148.269 15.7056ZM90.7662 41.6C93.8707 41.6 96.5836 42.9872 98.2338 45.2448L97.143 46.088C95.6047 43.9664 93.4791 42.9056 90.7941 42.9056C88.5287 42.9056 86.6548 43.6672 85.1165 45.1904C83.6062 46.6864 82.8511 48.5632 82.8511 50.8208C82.8511 53.0784 83.6062 54.9824 85.1165 56.5056C86.6268 58.0016 88.5287 58.7632 90.7941 58.7632C93.5071 58.7632 95.6047 57.7024 97.143 55.608L98.2338 56.4512C96.5836 58.7088 93.8707 60.096 90.7662 60.096C88.1092 60.096 85.8717 59.1984 84.0537 57.4304C82.2358 55.6624 81.3128 53.4592 81.3128 50.848C81.3128 48.2368 82.2358 46.0336 84.0537 44.2656C85.8717 42.4976 88.1092 41.6 90.7662 41.6ZM110.54 41.6C113.169 41.6 115.406 42.4976 117.252 44.2656C119.098 46.0336 120.021 48.2368 120.021 50.848C120.021 53.432 119.098 55.6352 117.252 57.4304C115.406 59.1984 113.169 60.096 110.54 60.096C107.883 60.096 105.645 59.1984 103.827 57.4304C102.01 55.6352 101.087 53.432 101.087 50.848C101.087 48.2368 102.01 46.0336 103.827 44.2656C105.645 42.4976 107.883 41.6 110.54 41.6ZM110.568 42.9056C108.302 42.9056 106.401 43.6672 104.89 45.1904C103.38 46.6864 102.625 48.5632 102.625 50.8208C102.625 53.0784 103.38 54.9552 104.89 56.4784C106.401 58.0016 108.302 58.7632 110.568 58.7632C112.833 58.7632 114.707 58.0016 116.218 56.4784C117.728 54.9552 118.483 53.0784 118.483 50.8208C118.483 48.5904 117.728 46.7136 116.19 45.1904C114.679 43.6672 112.805 42.9056 110.568 42.9056ZM132.467 52.2896L140.159 41.6H140.718V59.824H139.264V45.2176L132.775 54.2208H132.216L125.699 45.2176V59.824H124.244V41.6H124.804L132.467 52.2896ZM154.422 52.2896L162.114 41.6H162.673V59.824H161.219V45.2176L154.73 54.2208H154.171L147.654 45.2176V59.824H146.2V41.6H146.759L154.422 52.2896ZM168.155 41.872H179.706V43.1504H169.609V49.488H177.469V50.7664H169.609V58.5456H180.042V59.824H168.155V41.872ZM191.537 51.664L197.774 59.824H196.068L189.859 51.7728H185.356V59.824H183.901V41.872H190.166C191.872 41.872 193.243 42.3344 194.25 43.2592C195.257 44.184 195.76 45.3536 195.76 46.7952C195.76 49.2976 194.194 51.2016 191.537 51.664ZM190.11 43.1504H185.356V50.4944H190.11C192.767 50.4944 194.25 48.9984 194.25 46.8224C194.25 44.6464 192.767 43.1504 190.11 43.1504ZM208.849 41.6C211.954 41.6 214.667 42.9872 216.317 45.2448L215.226 46.088C213.688 43.9664 211.562 42.9056 208.877 42.9056C206.612 42.9056 204.738 43.6672 203.2 45.1904C201.689 46.6864 200.934 48.5632 200.934 50.8208C200.934 53.0784 201.689 54.9824 203.2 56.5056C204.71 58.0016 206.612 58.7632 208.877 58.7632C211.59 58.7632 213.688 57.7024 215.226 55.608L216.317 56.4512C214.667 58.7088 211.954 60.096 208.849 60.096C206.192 60.096 203.955 59.1984 202.137 57.4304C200.319 55.6624 199.396 53.4592 199.396 50.848C199.396 48.2368 200.319 46.0336 202.137 44.2656C203.955 42.4976 206.192 41.6 208.849 41.6ZM220.568 41.872H232.119V43.1504H222.022V49.488H229.882V50.7664H222.022V58.5456H232.455V59.824H220.568V41.872Z" fill="white"/>
9
- </g>
10
- <defs>
11
- <filter id="filter0_d" x="0" y="0" width="252" height="81" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
- <feOffset dx="4" dy="4"/>
15
- <feGaussianBlur stdDeviation="7.5"/>
16
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
17
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
18
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
19
- </filter>
20
- </defs>
21
- </svg>
1
+ <svg width="252" height="81" viewBox="0 0 252 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M34.5982 11L22.7992 36.5H34.5982L46.3976 11H34.5982Z" fill="#CCCCCC"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11 11L22.7992 36.5H34.5984L22.7992 11H11Z" fill="#FF4A4A"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M63.441 41.6C63.441 43.7127 61.6798 45.425 59.5079 45.425C57.3355 45.425 55.5748 43.7127 55.5748 41.6C55.5748 39.4874 57.3355 37.775 59.5079 37.775C61.6798 37.775 63.441 39.4874 63.441 41.6Z" fill="#FF4A4A"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 44.15H38.5315C39.9747 54.1672 48.8288 61.9016 59.5079 61.9016V50.3871C55.3794 50.3871 51.8732 47.7685 50.6321 44.15Z" fill="#FFC10D"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.6321 39.05C51.8732 35.4115 55.3794 32.7784 59.5079 32.7784V21.2C48.8288 21.2 39.9747 28.9773 38.5315 39.05H50.6321Z" fill="#FFC10D"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M89.116 30.176L95.7446 14.672H97.3108L89.4237 32.896H88.8364L80.9213 14.672H82.4875L89.116 30.176ZM101.142 14.672H102.597V32.624H101.142V14.672ZM115.686 24.464L121.923 32.624H120.217L114.008 24.5728H109.505V32.624H108.051V14.672H114.316C116.022 14.672 117.392 15.1344 118.399 16.0592C119.406 16.984 119.909 18.1536 119.909 19.5952C119.909 22.0976 118.343 24.0016 115.686 24.464ZM114.26 15.9504H109.505V23.2944H114.26C116.917 23.2944 118.399 21.7984 118.399 19.6224C118.399 17.4464 116.917 15.9504 114.26 15.9504ZM122.454 14.672H137.418V15.9504H130.649V32.624H129.195V15.9504H122.454V14.672ZM148.241 14.4C150.87 14.4 153.108 15.2976 154.954 17.0656C156.8 18.8336 157.723 21.0368 157.723 23.648C157.723 26.232 156.8 28.4352 154.954 30.2304C153.108 31.9984 150.87 32.896 148.241 32.896C145.584 32.896 143.347 31.9984 141.529 30.2304C139.711 28.4352 138.788 26.232 138.788 23.648C138.788 21.0368 139.711 18.8336 141.529 17.0656C143.347 15.2976 145.584 14.4 148.241 14.4ZM148.269 15.7056C146.004 15.7056 144.102 16.4672 142.592 17.9904C141.082 19.4864 140.326 21.3632 140.326 23.6208C140.326 25.8784 141.082 27.7552 142.592 29.2784C144.102 30.8016 146.004 31.5632 148.269 31.5632C150.535 31.5632 152.409 30.8016 153.919 29.2784C155.429 27.7552 156.185 25.8784 156.185 23.6208C156.185 21.3904 155.429 19.5136 153.891 17.9904C152.381 16.4672 150.507 15.7056 148.269 15.7056ZM90.7662 41.6C93.8707 41.6 96.5836 42.9872 98.2338 45.2448L97.143 46.088C95.6047 43.9664 93.4791 42.9056 90.7941 42.9056C88.5287 42.9056 86.6548 43.6672 85.1165 45.1904C83.6062 46.6864 82.8511 48.5632 82.8511 50.8208C82.8511 53.0784 83.6062 54.9824 85.1165 56.5056C86.6268 58.0016 88.5287 58.7632 90.7941 58.7632C93.5071 58.7632 95.6047 57.7024 97.143 55.608L98.2338 56.4512C96.5836 58.7088 93.8707 60.096 90.7662 60.096C88.1092 60.096 85.8717 59.1984 84.0537 57.4304C82.2358 55.6624 81.3128 53.4592 81.3128 50.848C81.3128 48.2368 82.2358 46.0336 84.0537 44.2656C85.8717 42.4976 88.1092 41.6 90.7662 41.6ZM110.54 41.6C113.169 41.6 115.406 42.4976 117.252 44.2656C119.098 46.0336 120.021 48.2368 120.021 50.848C120.021 53.432 119.098 55.6352 117.252 57.4304C115.406 59.1984 113.169 60.096 110.54 60.096C107.883 60.096 105.645 59.1984 103.827 57.4304C102.01 55.6352 101.087 53.432 101.087 50.848C101.087 48.2368 102.01 46.0336 103.827 44.2656C105.645 42.4976 107.883 41.6 110.54 41.6ZM110.568 42.9056C108.302 42.9056 106.401 43.6672 104.89 45.1904C103.38 46.6864 102.625 48.5632 102.625 50.8208C102.625 53.0784 103.38 54.9552 104.89 56.4784C106.401 58.0016 108.302 58.7632 110.568 58.7632C112.833 58.7632 114.707 58.0016 116.218 56.4784C117.728 54.9552 118.483 53.0784 118.483 50.8208C118.483 48.5904 117.728 46.7136 116.19 45.1904C114.679 43.6672 112.805 42.9056 110.568 42.9056ZM132.467 52.2896L140.159 41.6H140.718V59.824H139.264V45.2176L132.775 54.2208H132.216L125.699 45.2176V59.824H124.244V41.6H124.804L132.467 52.2896ZM154.422 52.2896L162.114 41.6H162.673V59.824H161.219V45.2176L154.73 54.2208H154.171L147.654 45.2176V59.824H146.2V41.6H146.759L154.422 52.2896ZM168.155 41.872H179.706V43.1504H169.609V49.488H177.469V50.7664H169.609V58.5456H180.042V59.824H168.155V41.872ZM191.537 51.664L197.774 59.824H196.068L189.859 51.7728H185.356V59.824H183.901V41.872H190.166C191.872 41.872 193.243 42.3344 194.25 43.2592C195.257 44.184 195.76 45.3536 195.76 46.7952C195.76 49.2976 194.194 51.2016 191.537 51.664ZM190.11 43.1504H185.356V50.4944H190.11C192.767 50.4944 194.25 48.9984 194.25 46.8224C194.25 44.6464 192.767 43.1504 190.11 43.1504ZM208.849 41.6C211.954 41.6 214.667 42.9872 216.317 45.2448L215.226 46.088C213.688 43.9664 211.562 42.9056 208.877 42.9056C206.612 42.9056 204.738 43.6672 203.2 45.1904C201.689 46.6864 200.934 48.5632 200.934 50.8208C200.934 53.0784 201.689 54.9824 203.2 56.5056C204.71 58.0016 206.612 58.7632 208.877 58.7632C211.59 58.7632 213.688 57.7024 215.226 55.608L216.317 56.4512C214.667 58.7088 211.954 60.096 208.849 60.096C206.192 60.096 203.955 59.1984 202.137 57.4304C200.319 55.6624 199.396 53.4592 199.396 50.848C199.396 48.2368 200.319 46.0336 202.137 44.2656C203.955 42.4976 206.192 41.6 208.849 41.6ZM220.568 41.872H232.119V43.1504H222.022V49.488H229.882V50.7664H222.022V58.5456H232.455V59.824H220.568V41.872Z" fill="white"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d" x="0" y="0" width="252" height="81" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset dx="4" dy="4"/>
15
+ <feGaussianBlur stdDeviation="7.5"/>
16
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
17
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
18
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
19
+ </filter>
20
+ </defs>
21
+ </svg>
@@ -1,8 +1,8 @@
1
- <svg width="127" height="30" viewBox="0 0 127 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4999 0L6.75 15H13.4999L20.25 0H13.4999Z" fill="#CCCCCC"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L6.75 15H13.5L6.75 0H0Z" fill="#FF4A4A"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M30 18C30 19.2428 28.9925 20.25 27.75 20.25C26.5072 20.25 25.5 19.2428 25.5 18C25.5 16.7572 26.5072 15.75 27.75 15.75C28.9925 15.75 30 16.7572 30 18Z" fill="#FF4A4A"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.6724 19.5H15.75C16.5756 25.3925 21.6408 29.9421 27.75 29.9421V23.1689C25.3882 23.1689 23.3824 21.6285 22.6724 19.5Z" fill="#FFC10D"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.6724 16.5C23.3824 14.3597 25.3882 12.8108 27.75 12.8108V6C21.6408 6 16.5756 10.5749 15.75 16.5H22.6724Z" fill="#FFC10D"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M44.688 11.28L48.48 2.16H49.376L44.864 12.88H44.528L40 2.16H40.896L44.688 11.28ZM51.568 2.16H52.4V12.72H51.568V2.16ZM59.888 7.92L63.456 12.72H62.48L58.928 7.984H56.352V12.72H55.52V2.16H59.104C60.08 2.16 60.864 2.432 61.44 2.976C62.016 3.52 62.304 4.208 62.304 5.056C62.304 6.528 61.408 7.648 59.888 7.92ZM59.072 2.912H56.352V7.232H59.072C60.592 7.232 61.44 6.352 61.44 5.072C61.44 3.792 60.592 2.912 59.072 2.912ZM63.76 2.16H72.32V2.912H68.448V12.72H67.616V2.912H63.76V2.16ZM78.512 2C80.016 2 81.296 2.528 82.352 3.568C83.408 4.608 83.936 5.904 83.936 7.44C83.936 8.96 83.408 10.256 82.352 11.312C81.296 12.352 80.016 12.88 78.512 12.88C76.992 12.88 75.712 12.352 74.672 11.312C73.632 10.256 73.104 8.96 73.104 7.44C73.104 5.904 73.632 4.608 74.672 3.568C75.712 2.528 76.992 2 78.512 2ZM78.528 2.768C77.232 2.768 76.144 3.216 75.28 4.112C74.416 4.992 73.984 6.096 73.984 7.424C73.984 8.752 74.416 9.856 75.28 10.752C76.144 11.648 77.232 12.096 78.528 12.096C79.824 12.096 80.896 11.648 81.76 10.752C82.624 9.856 83.056 8.752 83.056 7.424C83.056 6.112 82.624 5.008 81.744 4.112C80.88 3.216 79.808 2.768 78.528 2.768ZM45.632 18C47.408 18 48.96 18.816 49.904 20.144L49.28 20.64C48.4 19.392 47.184 18.768 45.648 18.768C44.352 18.768 43.28 19.216 42.4 20.112C41.536 20.992 41.104 22.096 41.104 23.424C41.104 24.752 41.536 25.872 42.4 26.768C43.264 27.648 44.352 28.096 45.648 28.096C47.2 28.096 48.4 27.472 49.28 26.24L49.904 26.736C48.96 28.064 47.408 28.88 45.632 28.88C44.112 28.88 42.832 28.352 41.792 27.312C40.752 26.272 40.224 24.976 40.224 23.44C40.224 21.904 40.752 20.608 41.792 19.568C42.832 18.528 44.112 18 45.632 18ZM56.944 18C58.448 18 59.728 18.528 60.784 19.568C61.84 20.608 62.368 21.904 62.368 23.44C62.368 24.96 61.84 26.256 60.784 27.312C59.728 28.352 58.448 28.88 56.944 28.88C55.424 28.88 54.144 28.352 53.104 27.312C52.064 26.256 51.536 24.96 51.536 23.44C51.536 21.904 52.064 20.608 53.104 19.568C54.144 18.528 55.424 18 56.944 18ZM56.96 18.768C55.664 18.768 54.576 19.216 53.712 20.112C52.848 20.992 52.416 22.096 52.416 23.424C52.416 24.752 52.848 25.856 53.712 26.752C54.576 27.648 55.664 28.096 56.96 28.096C58.256 28.096 59.328 27.648 60.192 26.752C61.056 25.856 61.488 24.752 61.488 23.424C61.488 22.112 61.056 21.008 60.176 20.112C59.312 19.216 58.24 18.768 56.96 18.768ZM69.488 24.288L73.888 18H74.208V28.72H73.376V20.128L69.664 25.424H69.344L65.616 20.128V28.72H64.784V18H65.104L69.488 24.288ZM82.048 24.288L86.448 18H86.768V28.72H85.936V20.128L82.224 25.424H81.904L78.176 20.128V28.72H77.344V18H77.664L82.048 24.288ZM89.904 18.16H96.512V18.912H90.736V22.64H95.232V23.392H90.736V27.968H96.704V28.72H89.904V18.16ZM103.28 23.92L106.848 28.72H105.872L102.32 23.984H99.744V28.72H98.912V18.16H102.496C103.472 18.16 104.256 18.432 104.832 18.976C105.408 19.52 105.696 20.208 105.696 21.056C105.696 22.528 104.8 23.648 103.28 23.92ZM102.464 18.912H99.744V23.232H102.464C103.984 23.232 104.832 22.352 104.832 21.072C104.832 19.792 103.984 18.912 102.464 18.912ZM113.184 18C114.96 18 116.512 18.816 117.456 20.144L116.832 20.64C115.952 19.392 114.736 18.768 113.2 18.768C111.904 18.768 110.832 19.216 109.952 20.112C109.088 20.992 108.656 22.096 108.656 23.424C108.656 24.752 109.088 25.872 109.952 26.768C110.816 27.648 111.904 28.096 113.2 28.096C114.752 28.096 115.952 27.472 116.832 26.24L117.456 26.736C116.512 28.064 114.96 28.88 113.184 28.88C111.664 28.88 110.384 28.352 109.344 27.312C108.304 26.272 107.776 24.976 107.776 23.44C107.776 21.904 108.304 20.608 109.344 19.568C110.384 18.528 111.664 18 113.184 18ZM119.888 18.16H126.496V18.912H120.72V22.64H125.216V23.392H120.72V27.968H126.688V28.72H119.888V18.16Z" fill="#161D25"/>
8
- </svg>
1
+ <svg width="127" height="30" viewBox="0 0 127 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4999 0L6.75 15H13.4999L20.25 0H13.4999Z" fill="#CCCCCC"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L6.75 15H13.5L6.75 0H0Z" fill="#FF4A4A"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M30 18C30 19.2428 28.9925 20.25 27.75 20.25C26.5072 20.25 25.5 19.2428 25.5 18C25.5 16.7572 26.5072 15.75 27.75 15.75C28.9925 15.75 30 16.7572 30 18Z" fill="#FF4A4A"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.6724 19.5H15.75C16.5756 25.3925 21.6408 29.9421 27.75 29.9421V23.1689C25.3882 23.1689 23.3824 21.6285 22.6724 19.5Z" fill="#FFC10D"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.6724 16.5C23.3824 14.3597 25.3882 12.8108 27.75 12.8108V6C21.6408 6 16.5756 10.5749 15.75 16.5H22.6724Z" fill="#FFC10D"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M44.688 11.28L48.48 2.16H49.376L44.864 12.88H44.528L40 2.16H40.896L44.688 11.28ZM51.568 2.16H52.4V12.72H51.568V2.16ZM59.888 7.92L63.456 12.72H62.48L58.928 7.984H56.352V12.72H55.52V2.16H59.104C60.08 2.16 60.864 2.432 61.44 2.976C62.016 3.52 62.304 4.208 62.304 5.056C62.304 6.528 61.408 7.648 59.888 7.92ZM59.072 2.912H56.352V7.232H59.072C60.592 7.232 61.44 6.352 61.44 5.072C61.44 3.792 60.592 2.912 59.072 2.912ZM63.76 2.16H72.32V2.912H68.448V12.72H67.616V2.912H63.76V2.16ZM78.512 2C80.016 2 81.296 2.528 82.352 3.568C83.408 4.608 83.936 5.904 83.936 7.44C83.936 8.96 83.408 10.256 82.352 11.312C81.296 12.352 80.016 12.88 78.512 12.88C76.992 12.88 75.712 12.352 74.672 11.312C73.632 10.256 73.104 8.96 73.104 7.44C73.104 5.904 73.632 4.608 74.672 3.568C75.712 2.528 76.992 2 78.512 2ZM78.528 2.768C77.232 2.768 76.144 3.216 75.28 4.112C74.416 4.992 73.984 6.096 73.984 7.424C73.984 8.752 74.416 9.856 75.28 10.752C76.144 11.648 77.232 12.096 78.528 12.096C79.824 12.096 80.896 11.648 81.76 10.752C82.624 9.856 83.056 8.752 83.056 7.424C83.056 6.112 82.624 5.008 81.744 4.112C80.88 3.216 79.808 2.768 78.528 2.768ZM45.632 18C47.408 18 48.96 18.816 49.904 20.144L49.28 20.64C48.4 19.392 47.184 18.768 45.648 18.768C44.352 18.768 43.28 19.216 42.4 20.112C41.536 20.992 41.104 22.096 41.104 23.424C41.104 24.752 41.536 25.872 42.4 26.768C43.264 27.648 44.352 28.096 45.648 28.096C47.2 28.096 48.4 27.472 49.28 26.24L49.904 26.736C48.96 28.064 47.408 28.88 45.632 28.88C44.112 28.88 42.832 28.352 41.792 27.312C40.752 26.272 40.224 24.976 40.224 23.44C40.224 21.904 40.752 20.608 41.792 19.568C42.832 18.528 44.112 18 45.632 18ZM56.944 18C58.448 18 59.728 18.528 60.784 19.568C61.84 20.608 62.368 21.904 62.368 23.44C62.368 24.96 61.84 26.256 60.784 27.312C59.728 28.352 58.448 28.88 56.944 28.88C55.424 28.88 54.144 28.352 53.104 27.312C52.064 26.256 51.536 24.96 51.536 23.44C51.536 21.904 52.064 20.608 53.104 19.568C54.144 18.528 55.424 18 56.944 18ZM56.96 18.768C55.664 18.768 54.576 19.216 53.712 20.112C52.848 20.992 52.416 22.096 52.416 23.424C52.416 24.752 52.848 25.856 53.712 26.752C54.576 27.648 55.664 28.096 56.96 28.096C58.256 28.096 59.328 27.648 60.192 26.752C61.056 25.856 61.488 24.752 61.488 23.424C61.488 22.112 61.056 21.008 60.176 20.112C59.312 19.216 58.24 18.768 56.96 18.768ZM69.488 24.288L73.888 18H74.208V28.72H73.376V20.128L69.664 25.424H69.344L65.616 20.128V28.72H64.784V18H65.104L69.488 24.288ZM82.048 24.288L86.448 18H86.768V28.72H85.936V20.128L82.224 25.424H81.904L78.176 20.128V28.72H77.344V18H77.664L82.048 24.288ZM89.904 18.16H96.512V18.912H90.736V22.64H95.232V23.392H90.736V27.968H96.704V28.72H89.904V18.16ZM103.28 23.92L106.848 28.72H105.872L102.32 23.984H99.744V28.72H98.912V18.16H102.496C103.472 18.16 104.256 18.432 104.832 18.976C105.408 19.52 105.696 20.208 105.696 21.056C105.696 22.528 104.8 23.648 103.28 23.92ZM102.464 18.912H99.744V23.232H102.464C103.984 23.232 104.832 22.352 104.832 21.072C104.832 19.792 103.984 18.912 102.464 18.912ZM113.184 18C114.96 18 116.512 18.816 117.456 20.144L116.832 20.64C115.952 19.392 114.736 18.768 113.2 18.768C111.904 18.768 110.832 19.216 109.952 20.112C109.088 20.992 108.656 22.096 108.656 23.424C108.656 24.752 109.088 25.872 109.952 26.768C110.816 27.648 111.904 28.096 113.2 28.096C114.752 28.096 115.952 27.472 116.832 26.24L117.456 26.736C116.512 28.064 114.96 28.88 113.184 28.88C111.664 28.88 110.384 28.352 109.344 27.312C108.304 26.272 107.776 24.976 107.776 23.44C107.776 21.904 108.304 20.608 109.344 19.568C110.384 18.528 111.664 18 113.184 18ZM119.888 18.16H126.496V18.912H120.72V22.64H125.216V23.392H120.72V27.968H126.688V28.72H119.888V18.16Z" fill="#161D25"/>
8
+ </svg>
@@ -1,32 +1,32 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
- <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
- width="147.000000pt" height="147.000000pt" viewBox="0 0 147.000000 147.000000"
6
- preserveAspectRatio="xMidYMid meet">
7
- <metadata>
8
- Created by potrace 1.14, written by Peter Selinger 2001-2017
9
- </metadata>
10
- <g transform="translate(0.000000,147.000000) scale(0.100000,-0.100000)"
11
- fill="#000000" stroke="none">
12
- <path d="M110 1428 c0 -6 18 -50 56 -135 8 -18 20 -48 28 -65 42 -95 137 -310
13
- 160 -360 14 -31 30 -68 36 -82 l10 -26 164 0 c136 0 164 2 160 14 -3 7 1 20 8
14
- 27 7 8 15 23 16 34 2 11 8 23 14 26 5 3 9 8 7 10 -6 9 34 99 44 99 6 0 7 3 4
15
- 6 -3 4 -1 16 5 28 7 11 11 24 10 29 -1 4 3 7 9 7 5 0 8 4 4 9 -3 5 -1 12 5 16
16
- 5 3 10 15 10 26 0 10 5 19 12 19 6 0 8 3 5 6 -4 4 3 25 14 48 43 85 49 98 49
17
- 112 0 8 5 14 11 14 5 0 7 5 4 10 -3 6 -1 10 6 10 7 0 9 3 6 6 -3 4 -1 16 5 28
18
- 12 21 14 27 17 45 0 5 8 17 17 25 14 15 10 16 -48 17 -221 2 -242 0 -255 -18
19
- -7 -10 -17 -23 -22 -29 -5 -7 -8 -14 -5 -17 7 -6 -17 -57 -27 -57 -5 0 -6 -6
20
- -3 -14 3 -7 -2 -21 -11 -30 -9 -9 -14 -16 -10 -16 3 0 0 -10 -7 -22 -7 -13
21
- -13 -25 -14 -28 -10 -36 -29 -70 -37 -67 -6 2 -41 71 -77 153 l-66 149 -157 0
22
- c-86 0 -157 -3 -157 -7z"/>
23
- <path d="M1200 1109 c-172 -23 -334 -139 -407 -293 -30 -62 -58 -154 -49 -163
24
- 4 -4 173 -6 277 -4 20 1 30 9 39 30 26 64 119 130 183 131 15 0 27 3 28 8 1 4
25
- 2 73 3 153 2 99 -1 146 -8 145 -6 0 -36 -3 -66 -7z"/>
26
- <path d="M1250 673 c-38 -7 -78 -51 -85 -93 -15 -91 74 -155 159 -115 85 40
27
- 79 164 -9 201 -19 8 -36 13 -37 13 -2 -1 -14 -4 -28 -6z"/>
28
- <path d="M887 503 l-148 -4 7 -37 c32 -178 177 -339 360 -401 52 -17 121 -27
29
- 159 -22 7 1 10 52 9 143 -1 79 -2 145 -3 148 0 3 -15 7 -32 8 -65 5 -144 63
30
- -179 132 -11 22 -21 39 -23 38 -1 -1 -69 -4 -150 -5z"/>
31
- </g>
32
- </svg>
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="147.000000pt" height="147.000000pt" viewBox="0 0 147.000000 147.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
+ </metadata>
10
+ <g transform="translate(0.000000,147.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M110 1428 c0 -6 18 -50 56 -135 8 -18 20 -48 28 -65 42 -95 137 -310
13
+ 160 -360 14 -31 30 -68 36 -82 l10 -26 164 0 c136 0 164 2 160 14 -3 7 1 20 8
14
+ 27 7 8 15 23 16 34 2 11 8 23 14 26 5 3 9 8 7 10 -6 9 34 99 44 99 6 0 7 3 4
15
+ 6 -3 4 -1 16 5 28 7 11 11 24 10 29 -1 4 3 7 9 7 5 0 8 4 4 9 -3 5 -1 12 5 16
16
+ 5 3 10 15 10 26 0 10 5 19 12 19 6 0 8 3 5 6 -4 4 3 25 14 48 43 85 49 98 49
17
+ 112 0 8 5 14 11 14 5 0 7 5 4 10 -3 6 -1 10 6 10 7 0 9 3 6 6 -3 4 -1 16 5 28
18
+ 12 21 14 27 17 45 0 5 8 17 17 25 14 15 10 16 -48 17 -221 2 -242 0 -255 -18
19
+ -7 -10 -17 -23 -22 -29 -5 -7 -8 -14 -5 -17 7 -6 -17 -57 -27 -57 -5 0 -6 -6
20
+ -3 -14 3 -7 -2 -21 -11 -30 -9 -9 -14 -16 -10 -16 3 0 0 -10 -7 -22 -7 -13
21
+ -13 -25 -14 -28 -10 -36 -29 -70 -37 -67 -6 2 -41 71 -77 153 l-66 149 -157 0
22
+ c-86 0 -157 -3 -157 -7z"/>
23
+ <path d="M1200 1109 c-172 -23 -334 -139 -407 -293 -30 -62 -58 -154 -49 -163
24
+ 4 -4 173 -6 277 -4 20 1 30 9 39 30 26 64 119 130 183 131 15 0 27 3 28 8 1 4
25
+ 2 73 3 153 2 99 -1 146 -8 145 -6 0 -36 -3 -66 -7z"/>
26
+ <path d="M1250 673 c-38 -7 -78 -51 -85 -93 -15 -91 74 -155 159 -115 85 40
27
+ 79 164 -9 201 -19 8 -36 13 -37 13 -2 -1 -14 -4 -28 -6z"/>
28
+ <path d="M887 503 l-148 -4 7 -37 c32 -178 177 -339 360 -401 52 -17 121 -27
29
+ 159 -22 7 1 10 52 9 143 -1 79 -2 145 -3 148 0 3 -15 7 -32 8 -65 5 -144 63
30
+ -179 132 -11 22 -21 39 -23 38 -1 -1 -69 -4 -150 -5z"/>
31
+ </g>
32
+ </svg>
@@ -1 +1 @@
1
- export {};
1
+ export {};
@@ -1,9 +1,9 @@
1
- /// <reference types="vite/client" />
2
-
3
- interface ImportMetaEnv {
4
- readonly PACKAGE_VERSION: string;
5
- }
6
-
7
- interface ImportMeta {
8
- readonly env: ImportMetaEnv;
9
- }
1
+ /// <reference types="vite/client" />
2
+
3
+ interface ImportMetaEnv {
4
+ readonly PACKAGE_VERSION: string;
5
+ }
6
+
7
+ interface ImportMeta {
8
+ readonly env: ImportMetaEnv;
9
+ }
@@ -1,2 +1,2 @@
1
- import * as en from "./en.json";
2
- export { en };
1
+ import * as en from "./en.json";
2
+ export { en };
@@ -1,10 +1,10 @@
1
- import { createRouter, createWebHashHistory } from "vue-router";
2
-
3
- import { routes } from "./routes";
4
-
5
- export const router = createRouter({
6
- history: createWebHashHistory(import.meta.env.APP_BASE_PATH),
7
- routes: [],
8
- });
9
-
10
- routes.forEach((route) => router.addRoute(route));
1
+ import { createRouter, createWebHashHistory } from "vue-router";
2
+
3
+ import { routes } from "./routes";
4
+
5
+ export const router = createRouter({
6
+ history: createWebHashHistory(import.meta.env.APP_BASE_PATH),
7
+ routes: [],
8
+ });
9
+
10
+ routes.forEach((route) => router.addRoute(route));
@@ -1,7 +1,7 @@
1
- import defaultConfig, { content } from "@vc-shell/framework/tailwind.config";
2
-
3
- export default {
4
- prefix: "tw-",
5
- content: [...content, "./src/**/*.{vue,js,ts,jsx,tsx}"],
6
- theme: defaultConfig.theme,
7
- };
1
+ import defaultConfig, { content } from "@vc-shell/framework/tailwind.config";
2
+
3
+ export default {
4
+ prefix: "tw-",
5
+ content: [...content, "./src/**/*.{vue,js,ts,jsx,tsx}"],
6
+ theme: defaultConfig.theme,
7
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/create-vc-app",
3
3
  "description": "Application scaffolding",
4
- "version": "2.5.0-pr322.fbf6d33",
4
+ "version": "2.5.0-pr323.ada2f14",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
7
7
  "files": [
@@ -16,7 +16,7 @@
16
16
  "devDependencies": {
17
17
  "@types/ejs": "^3.1.5",
18
18
  "@types/prompts": "^2.4.4",
19
- "@vc-shell/ts-config": "2.5.0-pr322.fbf6d33",
19
+ "@vc-shell/ts-config": "2.5.0-pr323.ada2f14",
20
20
  "copyfiles": "^2.4.1",
21
21
  "cross-env": "^7.0.3",
22
22
  "shx": "^0.3.4",