File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 27
27
"unpkg" : " dist/csstree-validator.esm.js" ,
28
28
"jsdelivr" : " dist/csstree-validator.esm.js" ,
29
29
"browser" : {
30
- "path" : false ,
31
30
"./cjs/version.cjs" : " ./dist/version.cjs" ,
32
31
"./lib/version.js" : " ./dist/version.js"
33
32
},
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ const { version } = createRequire(import.meta.url)('../package.json');
7
7
8
8
async function build ( ) {
9
9
const genModules = {
10
- [ path . resolve ( 'lib/ version.js') ] : `export const version = "${ version } ";` ,
11
- [ path . resolve ( 'lib/ version.cjs') ] : `module.exports = "${ version } ";`
10
+ ' version.js' : `export const version = "${ version } ";` ,
11
+ ' version.cjs' : `module.exports = "${ version } ";`
12
12
} ;
13
- const genModulesFilter = new RegExp ( '(' + Object . keys ( genModules ) . join ( '|' ) . replace ( / \. / g, '\\.' ) . replace ( / \\ / g , '\\\\ ') + ')$' ) ;
13
+ const genModulesFilter = new RegExp ( 'lib[\\\\/] (' + Object . keys ( genModules ) . join ( '|' ) . replace ( / \. / g, '\\.' ) + ')$' ) ;
14
14
const plugins = [ {
15
15
name : 'replace' ,
16
16
setup ( { onLoad } ) {
You can’t perform that action at this time.
0 commit comments