Skip to content

feat: create with vue-i18n #548

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0709a51
feat: create with vue-i18n
Procrustes5 Aug 2, 2024
807f730
chore(test): add tests
Procrustes5 Aug 2, 2024
4da6366
Update pnpm-lock.yaml
Procrustes5 Aug 2, 2024
007c98b
fix(ci): add generated files
Procrustes5 Aug 2, 2024
a8764b5
fix(ci): set entrypoints ts
Procrustes5 Aug 2, 2024
cd6b00f
Revert "fix(ci): add generated files"
Procrustes5 Aug 5, 2024
3c8210b
fix: change index.js like vue-i18n document
Procrustes5 Aug 5, 2024
047817d
Merge branch 'main' into feat/create-with-i18n
Procrustes5 Aug 5, 2024
f4b7e2f
chore: pnpm-lock.yaml
Procrustes5 Aug 5, 2024
afd0352
Merge branch 'feat/create-with-i18n' of https://github.com/Procrustes…
Procrustes5 Aug 5, 2024
aebef03
Update pnpm-lock.yaml
Procrustes5 Aug 5, 2024
b2c996a
feat: add flags to snapshot
Procrustes5 Aug 12, 2024
e5c6f33
Merge branch 'main' into feat/create-with-i18n
Procrustes5 Aug 12, 2024
a44a4e8
fix: remove template/tsconfig/vue-i18n
Procrustes5 Aug 12, 2024
3acbe52
Merge branch 'feat/create-with-i18n' of https://github.com/Procrustes…
Procrustes5 Aug 12, 2024
8f7ccff
chore: fix package.json
Procrustes5 Aug 12, 2024
0d4a933
chore: pull main
Procrustes5 Aug 12, 2024
b3fa7e0
feat: add ts files
Procrustes5 Aug 16, 2024
d098768
fix: cd.yml
Procrustes5 Aug 16, 2024
d51fd03
Merge branch 'main' into feat/create-with-i18n
Procrustes5 Aug 16, 2024
cf5d71e
chore: export i18n
Procrustes5 Aug 16, 2024
cd0b81a
Merge branch 'feat/create-with-i18n' of https://github.com/Procrustes…
Procrustes5 Aug 16, 2024
3a83d52
feat: add views
Procrustes5 Aug 16, 2024
17fb167
chore: typo
Procrustes5 Aug 16, 2024
c7922a6
chore: delete i18n on matrix
Procrustes5 Aug 16, 2024
026cd9e
chore: avoid lint error
Procrustes5 Aug 16, 2024
884b9dd
chore: disable eslint
Procrustes5 Aug 16, 2024
ad66d81
chore: test
Procrustes5 Aug 16, 2024
a125bc7
chore: export i18n
Procrustes5 Aug 16, 2024
d2bf4f4
fix: delete duplicated files
Procrustes5 Aug 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(ci): add generated files
  • Loading branch information
Procrustes5 committed Aug 2, 2024
commit 007c98b80ee4f351e85a5b24df42682c05ca61ec
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/create-vue.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SOFTWARE.

await esbuild.build({
bundle: true,
entryPoints: ['index.ts'],
entryPoints: ['index.js'],
external: ['locales/*'],
outfile: 'outfile.cjs',
format: 'cjs',
Expand Down
Loading