File tree Expand file tree Collapse file tree 5 files changed +10
-13
lines changed
Expand file tree Collapse file tree 5 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @vanilla-extract/webpack-plugin ' : patch
3+ ---
4+
5+ Remove the ` extracted ` entrypoint from the webpack plugin.
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414 "module" : " ./loader/dist/vanilla-extract-webpack-plugin-loader.esm.js" ,
1515 "default" : " ./loader/dist/vanilla-extract-webpack-plugin-loader.cjs.js"
1616 },
17- "./extracted" : {
18- "module" : " ./extracted/dist/vanilla-extract-webpack-plugin-extracted.esm.js" ,
19- "default" : " ./extracted/dist/vanilla-extract-webpack-plugin-extracted.cjs.js"
20- },
2117 "./virtualFileLoader" : {
2218 "module" : " ./virtualFileLoader/dist/vanilla-extract-webpack-plugin-virtualFileLoader.esm.js" ,
2319 "default" : " ./virtualFileLoader/dist/vanilla-extract-webpack-plugin-virtualFileLoader.cjs.js"
2723 "entrypoints" : [
2824 " index.ts" ,
2925 " loader.ts" ,
30- " extracted.js" ,
3126 " virtualFileLoader.ts"
3227 ]
3328 },
3429 "files" : [
3530 " /dist" ,
3631 " /loader" ,
37- " /extracted " ,
38- " /virtualFileLoader "
32+ " /virtualFileLoader " ,
33+ " extracted.js "
3934 ],
4035 "repository" : {
4136 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -20,8 +20,9 @@ const virtualLoader = require.resolve(
2020 ) ,
2121) ;
2222
23- const emptyCssExtractionFile = require . resolve (
24- path . join ( path . dirname ( require . resolve ( '../../package.json' ) ) , 'extracted' ) ,
23+ const emptyCssExtractionFile = path . join (
24+ path . dirname ( require . resolve ( '../../package.json' ) ) ,
25+ 'extracted.js' ,
2526) ;
2627
2728interface LoaderOptions {
You can’t perform that action at this time.
0 commit comments