We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9f002 commit 189b04fCopy full SHA for 189b04f
2 files changed
src/utils/normalize-options.ts
@@ -72,7 +72,6 @@ export interface NormalizedOptions {
72
global?: string;
73
};
74
flags: Record<string, Record<string, boolean | null>>;
75
- svelte: unknown;
76
debugTools: {
77
isDebug: boolean;
78
debugToolsImport: string;
@@ -98,7 +97,6 @@ export function normalizeOptions(options: UserOptions): NormalizedOptions {
98
97
return {
99
externalizeHelpers: options.externalizeHelpers,
100
flags: parseFlags(options),
101
- svelte: options.svelte,
102
debugTools: parseDebugTools(options),
103
104
}
tests/normalize-options-test.ts
@@ -61,7 +61,6 @@ describe('normalizeOptions', function () {
61
},
62
63
externalizeHelpers: undefined,
64
- svelte: { 'ember-source': '1.2.0' },
65
66
67
expect(actual).toEqual(expected);
@@ -87,7 +86,6 @@ describe('normalizeOptions', function () {
87
86
whatever: { DEBUG: true },
88
89
90
- svelte: { foo: '1.2.0' },
91
92
93
@@ -113,7 +111,6 @@ describe('normalizeOptions', function () {
113
111
114
112
115
116
- svelte: { foo: '1.0.0' },
117
118
119
@@ -139,7 +136,6 @@ describe('normalizeOptions', function () {
139
136
140
137
141
138
142
143
144
145
0 commit comments