Skip to content

Commit 738f4b3

Browse files
committed
fix(build): enforce LF line ending in built files
fix #12819
1 parent cc14d44 commit 738f4b3

File tree

2 files changed

+77
-76
lines changed

2 files changed

+77
-76
lines changed

dist/vue.runtime.mjs

+76-76
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,76 @@
1-
import Vue from './vue.runtime.common.js'
2-
export default Vue
3-
4-
// this should be kept in sync with src/v3/index.ts
5-
export const {
6-
version,
7-
8-
// refs
9-
ref,
10-
shallowRef,
11-
isRef,
12-
toRef,
13-
toRefs,
14-
unref,
15-
proxyRefs,
16-
customRef,
17-
triggerRef,
18-
computed,
19-
20-
// reactive
21-
reactive,
22-
isReactive,
23-
isReadonly,
24-
isShallow,
25-
isProxy,
26-
shallowReactive,
27-
markRaw,
28-
toRaw,
29-
readonly,
30-
shallowReadonly,
31-
32-
// watch
33-
watch,
34-
watchEffect,
35-
watchPostEffect,
36-
watchSyncEffect,
37-
38-
// effectScope
39-
effectScope,
40-
onScopeDispose,
41-
getCurrentScope,
42-
43-
// provide / inject
44-
provide,
45-
inject,
46-
47-
// lifecycle
48-
onBeforeMount,
49-
onMounted,
50-
onBeforeUpdate,
51-
onUpdated,
52-
onBeforeUnmount,
53-
onUnmounted,
54-
onErrorCaptured,
55-
onActivated,
56-
onDeactivated,
57-
onServerPrefetch,
58-
onRenderTracked,
59-
onRenderTriggered,
60-
61-
// v2 only
62-
set,
63-
del,
64-
65-
// v3 compat
66-
h,
67-
getCurrentInstance,
68-
useSlots,
69-
useAttrs,
70-
mergeDefaults,
71-
nextTick,
72-
useCssModule,
73-
useCssVars,
74-
defineComponent,
75-
defineAsyncComponent
76-
} = Vue
1+
import Vue from './vue.runtime.common.js'
2+
export default Vue
3+
4+
// this should be kept in sync with src/v3/index.ts
5+
export const {
6+
version,
7+
8+
// refs
9+
ref,
10+
shallowRef,
11+
isRef,
12+
toRef,
13+
toRefs,
14+
unref,
15+
proxyRefs,
16+
customRef,
17+
triggerRef,
18+
computed,
19+
20+
// reactive
21+
reactive,
22+
isReactive,
23+
isReadonly,
24+
isShallow,
25+
isProxy,
26+
shallowReactive,
27+
markRaw,
28+
toRaw,
29+
readonly,
30+
shallowReadonly,
31+
32+
// watch
33+
watch,
34+
watchEffect,
35+
watchPostEffect,
36+
watchSyncEffect,
37+
38+
// effectScope
39+
effectScope,
40+
onScopeDispose,
41+
getCurrentScope,
42+
43+
// provide / inject
44+
provide,
45+
inject,
46+
47+
// lifecycle
48+
onBeforeMount,
49+
onMounted,
50+
onBeforeUpdate,
51+
onUpdated,
52+
onBeforeUnmount,
53+
onUnmounted,
54+
onErrorCaptured,
55+
onActivated,
56+
onDeactivated,
57+
onServerPrefetch,
58+
onRenderTracked,
59+
onRenderTriggered,
60+
61+
// v2 only
62+
set,
63+
del,
64+
65+
// v3 compat
66+
h,
67+
getCurrentInstance,
68+
useSlots,
69+
useAttrs,
70+
mergeDefaults,
71+
nextTick,
72+
useCssModule,
73+
useCssVars,
74+
defineComponent,
75+
defineAsyncComponent
76+
} = Vue

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"target": "esnext",
77
"module": "ESNext",
88
"moduleResolution": "node",
9+
"newLine": "LF",
910
"strict": true,
1011

1112
"allowJs": true,

0 commit comments

Comments
 (0)