Skip to content
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

v4 #41

Draft
wants to merge 36 commits into
base: master
Choose a base branch
from
Draft

v4 #41

Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
91a8f8f
"type": "module"/esm and package updates
lzurbriggen Feb 24, 2023
33aa294
remove cosmiconfig, WIP fix build
lzurbriggen Feb 28, 2023
a64da2d
tsconfigs, type checking, alias/path fixes, script setup in demo, ...
lzurbriggen Feb 28, 2023
542881e
adjust exports, prepare release workflow
lzurbriggen Feb 28, 2023
5e788ec
WIP new parser
Aug 6, 2024
f222a21
compileroptions, remove disableHtmlEscaping, some cleanup work
Aug 6, 2024
7c2f54a
fix some translations
Aug 6, 2024
18cc533
fix tests
Aug 6, 2024
f592d5b
adjust dev imports
Aug 6, 2024
74240a6
fix tsconfig paths, format tsconfigs
Aug 6, 2024
c70034d
vitepress setup
Aug 6, 2024
186db51
new demo page, docs stuff, remove /dev app
Aug 7, 2024
1a73313
fix parser issues
Aug 7, 2024
947fe4c
type fixes, todos
Aug 7, 2024
07bcc00
4.0.0-alpha.1
lzurbriggen Aug 7, 2024
fdd3bff
extend "vue" instead of "@vue/runtime-core"
Aug 7, 2024
3553090
fix global types
Aug 7, 2024
54f78d4
4.0.0-alpha.2
lzurbriggen Aug 7, 2024
391ee50
new parser (recursive descent)
Aug 8, 2024
45a058f
small parser fix
Aug 8, 2024
3679aa5
UTF-8 output, cleanup work
Aug 8, 2024
7ff92d9
normalize msgid line breaks
Aug 8, 2024
9739363
4.0.0-alpha.3
lzurbriggen Aug 8, 2024
f6422f1
fix package exports
Aug 8, 2024
3ef8952
4.0.0-alpha.4
lzurbriggen Aug 8, 2024
2e8adde
#56: Add `fuzzyMatching` output option to allow disabling to pass `--…
Aug 8, 2024
7d26477
4.0.0-alpha.5
lzurbriggen Aug 8, 2024
3669824
remove cjs build output, make output order more deterministic, replac…
lzurbriggen Aug 21, 2024
47750ad
more package updates
lzurbriggen Aug 21, 2024
b5b43fa
eslint package updates
lzurbriggen Aug 21, 2024
5c11ff2
4.0.0-alpha.6
lzurbriggen Aug 21, 2024
a32b979
node 20 in pipelines
lzurbriggen Aug 21, 2024
8f1ff2d
replace backslashes in path to fix windows extraction, check unrecogn…
lzurbriggen Aug 21, 2024
c2143b1
4.0.0-alpha.7
lzurbriggen Aug 21, 2024
c18c989
augment @vue/runtime-core along with vue. I'm losing my mind.
lzurbriggen Aug 30, 2024
b0e519b
4.0.0-alpha.8
lzurbriggen Aug 30, 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
node 20 in pipelines
lzurbriggen committed Aug 21, 2024
commit a32b979409d18faaed67d05e84101d369ad42e96
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
id: setup-node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: install system dependencies
run: |
sudo apt-get update
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ jobs:
uses: actions/setup-node@v3
with:
always-auth: true
node-version: 18
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: install dependencies
run: npm ci