File tree Expand file tree Collapse file tree 3 files changed +1
-13
lines changed Expand file tree Collapse file tree 3 files changed +1
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -35,29 +35,21 @@ const base = {
35
35
} ;
36
36
/** @type {import('webpack').Configuration[] } */
37
37
export default [
38
- {
39
- ...base ,
40
- entry : {
41
- 'eslint-scope' : resolve ( './eslint-scope.js' )
42
- }
43
- } ,
44
38
{
45
39
...base ,
46
40
entry : {
47
41
'svelte-eslint-parser' : resolve ( './svelte-eslint-parser.js' )
48
42
} ,
49
43
externals : {
50
44
'svelte/compiler' : '$$inject_svelte_compiler$$' ,
51
- espree : '$$inject_espree$$' ,
52
- 'eslint-scope' : '$$inject_eslint_scope$$'
45
+ espree : '$$inject_espree$$'
53
46
} ,
54
47
plugins : [
55
48
new WrapperPlugin ( {
56
49
test : / s v e l t e - e s l i n t - p a r s e r \. j s / ,
57
50
header : `
58
51
import * as $$inject_svelte_compiler$$ from 'svelte/compiler';
59
52
import $$inject_espree$$ from 'espree';
60
- import $$inject_eslint_scope$$ from 'eslint-scope';
61
53
`
62
54
} )
63
55
]
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ const config = {
21
21
assert : resolve ( './build-system/shim/assert.js' ) ,
22
22
path : resolve ( './build-system/shim/path.js' ) ,
23
23
fs : resolve ( './build-system/shim/fs.js' ) ,
24
- 'eslint-scope' : resolve ( './build-system/shim/eslint-scope.js' ) ,
25
24
'svelte-eslint-parser' : resolve ( './build-system/shim/svelte-eslint-parser.js' ) ,
26
25
'eslint-plugin-svelte3' : resolve ( './build-system/shim/eslint-plugin-svelte3.js' )
27
26
}
You can’t perform that action at this time.
0 commit comments