@@ -19,10 +19,10 @@ module.exports = {
19
19
devtool : 'cheap-module-source-map' ,
20
20
entry : {
21
21
lib : [ 'react' , 'react-dom' ] ,
22
- gui : './src/index.jsx' ,
23
- blocksonly : './src/examples /blocks-only.jsx' ,
24
- compatibilitytesting : './src/examples /compatibility-testing.jsx' ,
25
- player : './src/examples /player.jsx'
22
+ gui : './src/playground/ index.jsx' ,
23
+ blocksonly : './src/playground /blocks-only.jsx' ,
24
+ compatibilitytesting : './src/playground /compatibility-testing.jsx' ,
25
+ player : './src/playground /player.jsx'
26
26
} ,
27
27
output : {
28
28
path : path . resolve ( __dirname , 'build' ) ,
@@ -82,24 +82,24 @@ module.exports = {
82
82
} ) ,
83
83
new HtmlWebpackPlugin ( {
84
84
chunks : [ 'lib' , 'gui' ] ,
85
- template : 'src/index.ejs' ,
85
+ template : 'src/playground/ index.ejs' ,
86
86
title : 'Scratch 3.0 GUI'
87
87
} ) ,
88
88
new HtmlWebpackPlugin ( {
89
89
chunks : [ 'lib' , 'blocksonly' ] ,
90
- template : 'src/index.ejs' ,
90
+ template : 'src/playground/ index.ejs' ,
91
91
filename : 'blocks-only.html' ,
92
92
title : 'Scratch 3.0 GUI: Blocks Only Example'
93
93
} ) ,
94
94
new HtmlWebpackPlugin ( {
95
95
chunks : [ 'lib' , 'compatibilitytesting' ] ,
96
- template : 'src/index.ejs' ,
96
+ template : 'src/playground/ index.ejs' ,
97
97
filename : 'compatibility-testing.html' ,
98
98
title : 'Scratch 3.0 GUI: Compatibility Testing'
99
99
} ) ,
100
100
new HtmlWebpackPlugin ( {
101
101
chunks : [ 'lib' , 'player' ] ,
102
- template : 'src/index.ejs' ,
102
+ template : 'src/playground/ index.ejs' ,
103
103
filename : 'player.html' ,
104
104
title : 'Scratch 3.0 GUI: Player Example'
105
105
} ) ,
0 commit comments