-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathscratch-vm.patch
30 lines (28 loc) · 978 Bytes
/
scratch-vm.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
diff --git a/src/extension-support/extension-manager.js b/src/extension-support/extension-manager.js
index a5e2c4e..14d0acc 100644
--- a/src/extension-support/extension-manager.js
+++ b/src/extension-support/extension-manager.js
@@ -23,7 +23,8 @@ const builtinExtensions = {
ev3: () => require('../extensions/scratch3_ev3'),
makeymakey: () => require('../extensions/scratch3_makeymakey'),
boost: () => require('../extensions/scratch3_boost'),
- gdxfor: () => require('../extensions/scratch3_gdx_for')
+ gdxfor: () => require('../extensions/scratch3_gdx_for'),
+ yourScratchExtension: () => require('../extensions/your-scratch-extension')
};
/**
diff --git a/webpack.config.js b/webpack.config.js
index 6a8a3b3..ed3fa2b 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -36,7 +36,10 @@ const base = {
})
]
},
- plugins: []
+ plugins: [],
+ resolve: {
+ symlinks: false
+ }
};
module.exports = [