File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.9.2
4+ - Fixed * index* mode default read options.
5+ - Updated dependencies.
6+
37## 0.9.1
48 - Fixed * --keep-names* cli option.
59
Original file line number Diff line number Diff line change 11{
22 "name" : " @squirrel-forge/simple-webpack" ,
3- "version" : " 0.9.1 " ,
3+ "version" : " 0.9.2 " ,
44 "description" : " A thin node wrapper for webpack with some basic options and configuration." ,
55 "main" : " src/classes/SimpleWebpack.js" ,
66 "scripts" : {
3333 "node" : " >= 10.0.0"
3434 },
3535 "dependencies" : {
36- "@babel/core" : " ^7.17.9 " ,
36+ "@babel/core" : " ^7.17.10 " ,
3737 "@babel/eslint-parser" : " ^7.17.0" ,
38- "@babel/preset-env" : " ^7.16.11 " ,
38+ "@babel/preset-env" : " ^7.17.10 " ,
3939 "@squirrel-forge/node-cfx" : " ^1.2.1" ,
4040 "@squirrel-forge/node-util" : " ^1.4.2" ,
41- "babel-loader" : " ^8.2.4 " ,
41+ "babel-loader" : " ^8.2.5 " ,
4242 "babel-plugin-transform-builtin-extend" : " ^1.1.2" ,
4343 "cli-spinner" : " ^0.2.10" ,
4444 "directory-tree" : " ^3.2.2" ,
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ class SimpleWebpack {
182182 }
183183
184184 // Set the index mode options
185- options . read = { exclude : / ^ (? ! .* i n d e x ) .* \. j s $ / , extensions : / \. j s / } ;
185+ options . read = { exclude : / ^ (? ! .* i n d e x ) .* \. j s $ / , extensions : / ^ \. j s $ / } ;
186186 }
187187 files = FsInterface . fileList ( resolved , options . read ) ;
188188 } else {
You can’t perform that action at this time.
0 commit comments