@@ -15,7 +15,11 @@ module.exports = function( Release, files, complete ) {
15
15
const extras = [
16
16
"src" ,
17
17
"LICENSE.txt" ,
18
- "AUTHORS.txt"
18
+ "AUTHORS.txt" ,
19
+ "dist/package.json" ,
20
+ "dist-module/package.json" ,
21
+ "dist-module/jquery.node-module-wrapper.js" ,
22
+ "dist-module/jquery.node-module-wrapper.slim.js"
19
23
] ;
20
24
21
25
/**
@@ -65,9 +69,6 @@ module.exports = function( Release, files, complete ) {
65
69
* Copy necessary files over to the dist repo
66
70
*/
67
71
async function copy ( ) {
68
-
69
- // Copy dist files
70
- const distFolder = `${ Release . dir . dist } /dist` ;
71
72
const readme = await fs . readFile (
72
73
`${ Release . dir . repo } /build/fixtures/README.md` , "utf8" ) ;
73
74
const rmIgnore = [ ...files , "node_modules" ]
@@ -86,14 +87,24 @@ module.exports = function( Release, files, complete ) {
86
87
// Remove extraneous files before copy
87
88
shell . rm ( "-rf" , `${ Release . dir . dist } /**/*` ) ;
88
89
89
- shell . mkdir ( "-p" , distFolder ) ;
90
+ // Copy dist files
91
+ shell . mkdir ( "-p" , `${ Release . dir . dist } /dist` ) ;
92
+ shell . mkdir ( "-p" , `${ Release . dir . dist } /dist-module` ) ;
90
93
files . forEach ( function ( file ) {
91
- shell . cp ( "-f" , `${ Release . dir . repo } /${ file } ` , distFolder ) ;
94
+ shell . cp (
95
+ "-f" ,
96
+ `${ Release . dir . repo } /${ file } ` ,
97
+ `${ Release . dir . dist } /${ file } `
98
+ ) ;
92
99
} ) ;
93
100
94
101
// Copy other files
95
102
extras . forEach ( function ( file ) {
96
- shell . cp ( "-rf" , `${ Release . dir . repo } /${ file } ` , Release . dir . dist ) ;
103
+ shell . cp (
104
+ "-rf" ,
105
+ `${ Release . dir . repo } /${ file } ` ,
106
+ `${ Release . dir . dist } /${ file } `
107
+ ) ;
97
108
} ) ;
98
109
99
110
// Remove the wrapper & the ESLint config from the dist repo
0 commit comments