Evan You
|
f5971468e5
|
refactor(compiler-sfc): remove unnecessary emits type codegen
This is no longer necessary as we no longer recommend type checking generated code
|
2023-03-30 20:06:11 +08:00 |
Evan You
|
ef73ea53ea
|
feat(compiler-sfc): codegen support for defineEmits() short syntax (followup of #7992)
|
2023-03-30 19:59:07 +08:00 |
Evan You
|
8ac0620c1b
|
release: v3.3.0-alpha.6
|
2023-03-30 18:22:42 +08:00 |
Evan You
|
71635be68d
|
feat(compiler-sfc): support generating variable instead of default export in compileScript
|
2023-03-30 16:58:41 +08:00 |
三咲智子 Kevin Deng
|
ba4cec31b9
|
fix(compiler-sfc): infer runtime type in defineProps (#7972)
|
2023-03-30 14:49:28 +08:00 |
Evan You
|
ba9c2ae247
|
feat(compiler-sfc): enable reactive props destructure by default and deprecate withDefaults() (#7986)
|
2023-03-30 11:58:16 +08:00 |
Evan You
|
e10a89e608
|
fix(compiler-sfc): fix function default value handling w/ props destructure
|
2023-03-29 22:21:27 +08:00 |
Evan You
|
1a04fba10b
|
fix(compiler-sfc): infer object type for empty type literal
|
2023-03-29 21:01:52 +08:00 |
Evan You
|
a94072dd2c
|
fix(compiler-sfc): fix defineExpose() codegen regression from #7949
|
2023-03-29 20:31:25 +08:00 |
三咲智子 Kevin Deng
|
63ad77f6f6
|
feat(runtime-core): add skipCheck for prop (#7548)
|
2023-03-28 22:29:54 +08:00 |
Evan You
|
1bde9fbc91
|
chore: fix accidentally replaced comments [ci skip]
|
2023-03-28 21:22:11 +08:00 |
白雾三语
|
ddba46ae6d
|
chore: update snapshots by #7766 (#7970)
|
2023-03-28 12:27:09 +02:00 |
白雾三语
|
139104ba26
|
fix(compiler-sfc): use prependLeft to handle CSSVars (#7760)
|
2023-03-28 17:47:10 +08:00 |
Evan You
|
b9dc1adefb
|
chore: update snapshots
|
2023-03-28 17:35:42 +08:00 |
三咲智子 Kevin Deng
|
c839129ab9
|
fix(compiler-sfc): avoid codegen conflict with user variable named `expose` (#7949)
rename `expose` to `__expose` to avoid duplicate identifier
relate #7890
|
2023-03-28 17:34:23 +08:00 |
三咲智子 Kevin Deng
|
93f77292c9
|
fix(compiler-sfc): disallow `expose` property in `defineOptions` (#7967)
|
2023-03-28 17:32:37 +08:00 |
三咲智子 Kevin Deng
|
b7bd50f505
|
feat(compiler-core): support parsing `const` modifier in type parameters (#7912)
|
2023-03-28 17:31:23 +08:00 |
Evan You
|
eded94712e
|
feat(compiler-sfc): improve runtime props inference for enum
|
2023-03-28 17:29:31 +08:00 |
Evan You
|
5fb406e3e1
|
fix(compiler-sfc): properly handle unknown types in runtime prop inference
fix #7511
|
2023-03-28 17:15:25 +08:00 |
Evan You
|
6f5698c932
|
Revert "fix(compiler-sfc): infer correct type for enums"
This reverts commit 2e074a7009 .
|
2023-03-28 16:55:19 +08:00 |
Evan You
|
2e074a7009
|
fix(compiler-sfc): infer correct type for enums
fix #7511
|
2023-03-28 16:39:13 +08:00 |
三咲智子 Kevin Deng
|
0002567728
|
feat(compiler-sfc): support module string names syntax (#7428)
https://github.com/tc39/ecma262/pull/2154
|
2023-03-28 16:28:06 +08:00 |
三咲智子 Kevin Deng
|
d60e58c9f6
|
fix(compiler-sfc): fix edge case of default export call with no args (#7536)
closes #7534
|
2023-03-28 16:27:34 +08:00 |
三咲智子 Kevin Deng
|
336a3d7b91
|
fix(compiler-sfc): properly remove comma of multiple macros in the same declaration (#7423)
closes #7422
reverts #6778
|
2023-03-28 16:23:39 +08:00 |
三咲智子 Kevin Deng
|
9f5e20ccff
|
fix(compiler-sfc): allow `<script>` with lang='js' (#7398)
|
2023-03-28 15:48:41 +08:00 |
Evan You
|
4355d2492d
|
fix(compiler-sfc): handle more TS built-in utilities in defineProps inference
|
2023-03-28 15:41:24 +08:00 |
三咲智子 Kevin Deng
|
151a8ad6b9
|
fix(compiler-sfc): infer TSIntersectionType in defineProps (#7394)
|
2023-03-28 15:40:03 +08:00 |
三咲智子 Kevin Deng
|
1b69d5f2f4
|
fix(compiler-sfc): unwrap TS node for defineProps (#7340)
|
2023-03-28 15:22:01 +08:00 |
三咲智子 Kevin Deng
|
6391daf658
|
fix(compiler-sfc): infer TS Extract&Exclude runtime type (#7339)
closes #7337
closes #6252
|
2023-03-28 15:19:14 +08:00 |
三咲智子 Kevin Deng
|
3a7572cdb2
|
fix(compiler-sfc): infer function prop type from type literal w/ callable signature (#7119)
|
2023-03-28 11:59:21 +08:00 |
三咲智子 Kevin Deng
|
701b95ff3d
|
fix(compiler-sfc): rewrite default export with AST analysis instead of regex (#7068)
closes #7038
closes #7041
closes #7078
|
2023-03-28 11:54:22 +08:00 |
三咲智子 Kevin Deng
|
7def8b15b8
|
feat(complier-sfc): hoist literal constants for script (#5752)
- Support using literal constants in macros
- fix useCssVars insert position edge case
- fix non-literal-const enum hoisting
close #5750
|
2023-03-28 11:34:29 +08:00 |
三咲智子 Kevin Deng
|
bcf5841dde
|
feat(compiler-sfc): add defineOptions macro (#5738)
|
2023-03-28 10:43:51 +08:00 |
三咲智子 Kevin Deng
|
703f8c22e5
|
chore(deps): upgrade rollup & magic-string (#7326)
|
2023-03-28 09:52:06 +08:00 |
Evan You
|
efb54e7315
|
feat(sfc): deprecate reactivity transform
|
2023-03-27 21:01:36 +08:00 |
Evan You
|
27e1e38641
|
release: v3.3.0-alpha.5
|
2023-03-26 16:52:46 +08:00 |
Evan You
|
e60ebd07a4
|
chore: bump vite & vitest
|
2023-03-23 16:36:33 +08:00 |
Evan You
|
78b86150b8
|
release: v3.3.0-alpha.4
|
2023-02-06 14:10:56 +08:00 |
Evan You
|
097f6beca2
|
release: v3.3.0-alpha.3
|
2023-02-06 10:27:25 +08:00 |
Evan You
|
37ec04b984
|
release: v3.3.0-alpha.2
|
2023-02-05 16:23:54 +08:00 |
Evan You
|
85f4d8ccb9
|
release: v3.3.0-alpha.1
|
2023-02-05 11:20:39 +08:00 |
Evan You
|
eb0c1e7025
|
build: remove api-extractor
|
2023-02-03 15:57:00 +08:00 |
Evan You
|
53e3533b75
|
chore: bump deps
|
2023-02-03 05:47:40 +08:00 |
Evan You
|
124373db50
|
wip: isolatedModules + use rollup-plugin-esbuild
|
2023-02-03 04:30:19 +08:00 |
Evan You
|
45984d559f
|
release: v3.2.47
|
2023-02-02 13:48:18 +08:00 |
Evan You
|
29f8cf8b07
|
release: v3.2.46
|
2023-02-02 11:32:04 +08:00 |
edison
|
30399d46b1
|
fix(compiler-sfc): support resolving type declaration from normal script (#5831)
fix #5830
|
2023-02-01 04:24:50 -05:00 |
Evan You
|
0cd2213e6b
|
wip(vitest-migration): compiler-sfc tests passing
|
2023-01-26 16:49:10 +08:00 |
Evan You
|
f0d78e8c8f
|
wip(vitest-migration): ssr tests passing
|
2023-01-26 16:18:40 +08:00 |
Julien Huang
|
686c829fec
|
fix(compiler-sfc): allow declaring variables after defineProps (#7461)
* fix(compiler-sfc): allow declaring variables after defineProps
* test(compiler-sfc): test defineProps in multiple variable declaration
|
2023-01-09 15:13:58 +01:00 |
Evan You
|
9d5e30d911
|
build: bump jest, puppeteer and use official rollup terser plugin
|
2022-11-14 18:21:58 +08:00 |
三咲智子 Kevin Deng
|
3427052229
|
fix(reactivity-transform): prohibit const assignment at compile time (#6993)
close #6992
|
2022-11-14 02:54:41 -05:00 |
Evan You
|
a1099afe1b
|
chore: snapshot
|
2022-11-14 11:41:44 +08:00 |
三咲智子 Kevin Deng
|
9060bf0353
|
refactor(compiler-core): make ast.helpers a Set (#6774)
|
2022-11-13 20:44:02 -05:00 |
三咲智子 Kevin Deng
|
4e5d9cdb82
|
refactor(compiler-sfc): drop Function prop type when no static default value (#7125)
|
2022-11-13 20:15:17 -05:00 |
三咲智子 Kevin Deng
|
584eae60d1
|
fix(compiler-sfc): always generate runtime prop type for Function (#7112)
fix #7111
|
2022-11-13 19:36:03 -05:00 |
Evan You
|
6f663d47e5
|
release: v3.2.45
|
2022-11-11 17:35:27 +08:00 |
Evan You
|
0594400980
|
fix(sfc): also generate getter for import bindings during dev
|
2022-11-10 17:32:06 +08:00 |
Evan You
|
5a3d45ae29
|
fix(sfc): ensure consistent dev/prod behavior for non-reactive variables declared in `<script setup>`
fix #5655
|
2022-11-10 17:02:45 +08:00 |
Evan You
|
15e889afaf
|
fix(v-model): fix incorrect codegen for non-ref bindings
fix #6241
|
2022-11-10 15:32:58 +08:00 |
Evan You
|
ec795bfc51
|
release: v3.2.44
|
2022-11-10 07:25:22 +08:00 |
Evan You
|
71977ec972
|
release: v3.2.43
|
2022-11-09 21:00:57 +08:00 |
Evan You
|
f023d49a49
|
release: v3.2.42
|
2022-11-09 11:36:09 +08:00 |
三咲智子 Kevin Deng
|
57c9013837
|
fix(compiler-sfc): only escape parsing-breaking characters in v-bind css var names (#6816)
close #6803
|
2022-11-08 22:30:05 -05:00 |
三咲智子 Kevin Deng
|
8a882ce0a1
|
fix(compiler-sfc): handle method shorthand syntax in withDefaults (#6972)
fix #6971
|
2022-11-08 22:12:54 -05:00 |
三咲智子 Kevin Deng
|
910fa7677f
|
fix(compiler-sfc): resolve computed object key (#6963)
|
2022-11-08 21:57:40 -05:00 |
Evan You
|
6861d2380b
|
refactor(compiler-sfc): optimize import alias check for binding analysis
|
2022-11-08 17:47:47 +08:00 |
Evan You
|
8d1f526174
|
fix(compiler-sfc): fix binding analysis for aliased late import
|
2022-11-08 17:19:45 +08:00 |
三咲智子 Kevin Deng
|
4a00fddfed
|
fix(compiler-sfc): check import source during binding analysation (#6826)
fix #6825
|
2022-11-08 04:07:28 -05:00 |
Rudy
|
50e2253057
|
fix(compiler/runtime-dom): ignore comments in inline styles (#6808)
fix #6807
|
2022-11-07 22:42:32 -05:00 |
Evan You
|
1c292e19af
|
chore: fix snapshot
|
2022-11-08 11:36:16 +08:00 |
花果山大圣
|
a0c7f271a2
|
fix(compiler-sfc): require <template> or <script> in SFC (#6781)
fix #6676
|
2022-11-07 22:34:39 -05:00 |
花果山大圣
|
99b6697fb4
|
fix(compiler-sfc): fix macro usage in multi-variable declaration (#6778)
fix #6757
|
2022-11-07 22:16:21 -05:00 |
三咲智子 Kevin Deng
|
b72a4af38a
|
fix(compiler-sfc): add semicolon after `defineProps` statement (#6461)
fix #6428
|
2022-11-07 21:17:48 -05:00 |
三咲智子 Kevin Deng
|
97aadd8290
|
types: use actual type for script block ASTs (#6457)
|
2022-11-07 21:14:10 -05:00 |
三咲智子 Kevin Deng
|
c4f213b425
|
fix(reactivity-transform): add semicolon after statements (#6303)
|
2022-11-07 20:38:47 -05:00 |
三咲智子 (Kevin)
|
bbb66d7ac7
|
ci: check prettier format (#6830)
|
2022-10-28 09:39:34 +08:00 |
Evan You
|
bb06819d83
|
chore: fix snapshot
|
2022-10-26 17:46:17 +08:00 |
ygj6
|
eab76046e3
|
fix(compiler-sfc): allow type annotation for defineEmits variable (#5394)
fix #5393
|
2022-10-26 05:12:55 -04:00 |
edison
|
83f7e6f8a6
|
fix(compiler-sfc): support using extends interface with defineProps() (#4512)
fix #4498
|
2022-10-26 04:44:30 -04:00 |
Evan You
|
9617dd4b2a
|
release: v3.2.41
|
2022-10-14 18:41:15 +08:00 |
Anthony Fu
|
534593cfa8
|
chore: format
|
2022-10-03 15:30:43 +08:00 |
Evan You
|
551f606d98
|
release: v3.2.40
|
2022-09-28 11:40:24 +08:00 |
Dunqing
|
f9d43b99f8
|
fix(compilre-core): dynamic v-on and static v-on should be merged (#6747)
fix #6742
|
2022-09-27 22:46:55 -04:00 |
Travis
|
6958ec1b37
|
fix(compiler-sfc): fix expression check for v-on with object literal value (#6652)
fix #6650
fix #6674
|
2022-09-27 05:30:10 -04:00 |
Kid
|
96ba71d0cf
|
chore: fix typos (#6708)
|
2022-09-24 15:13:39 +08:00 |
Evan You
|
f79c423621
|
release: v3.2.39
|
2022-09-08 10:12:39 +08:00 |
Evan You
|
6624ead663
|
release: v3.2.38
|
2022-08-30 16:02:01 +08:00 |
林烁壕
|
81a7819535
|
fix(compiler-sfc): rewriteDefault for class with decorators (#6320)
fix #6318
|
2022-08-18 04:07:55 -04:00 |
Evan You
|
769e5555f9
|
fix(compiler-sfc): fix template usage check edge case for v-on statements
ref: https://github.com/vuejs/vue/issues/12591
|
2022-07-04 11:49:47 +08:00 |
Evan You
|
fb3bfde264
|
chore: fix wrong condition in 3ff83694
|
2022-07-01 12:18:21 +08:00 |
Evan You
|
3ff83694f5
|
fix(compiler-sfc): only add decorators-legacy parser plugin when new decorators plugin is not used
|
2022-06-30 10:39:14 +08:00 |
Evan You
|
bdffc143ef
|
release: v3.2.37
|
2022-06-06 20:08:19 +08:00 |
Evan You
|
e60244bcdf
|
fix(compiler-sfc): improve css v-bind parsing
fix #6022
|
2022-06-06 20:02:08 +08:00 |
Evan You
|
9734b31c31
|
fix(sfc): avoid auto name inference leading to unwanted recursion
fix #5965
fix #6027
fix #6029
|
2022-06-06 17:36:49 +08:00 |
Evan You
|
160d5df34a
|
release: v3.2.36
|
2022-05-23 10:04:12 +08:00 |
Jinesh Patel
|
0cd21ba77c
|
chore: remove unnecessary optional check (#5958)
|
2022-05-22 20:29:15 -04:00 |
Evan You
|
a0c577692f
|
release: v3.2.35
|
2022-05-21 01:16:26 +08:00 |
Evan You
|
583b625987
|
fix(compiler-sfc): fix usage detection for types in v-for/v-slot expressions
fix #5959
|
2022-05-21 00:09:15 +08:00 |
Evan You
|
3991609087
|
release: v3.2.34
|
2022-05-19 12:42:34 +08:00 |