-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.build.js
320 lines (272 loc) · 11 KB
/
rollup.build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
const fs = require('fs');
const path = require('path');
const glob = require("glob");
const react_redux = require("react-redux");
const redux = require("redux");
const typescript = require("rollup-plugin-typescript");
const scss = require("rollup-plugin-scss");
// const multiEntry = require("rollup-plugin-multi-entry");
const rollup = require('rollup');
let configFileName;
let srcDirPath = '../src/modules';
let outDirPath = 'build/static/js/assets/';
async function build(inputOptions,outputOptions) {
// create a bundle
const bundle = await rollup.rollup(inputOptions);
// console.log(bundle.watchFiles); // an array of file names this bundle depends on
// generate code
const {output} = await bundle.generate(outputOptions);
// console.log(output);
for (const chunkOrAsset of output) {
// console.log(chunkOrAsset.name)
if (chunkOrAsset.isAsset) {
// For assets, this contains
// {
// isAsset: true, // signifies that this is an asset
// fileName: string, // the asset file name
// source: string | Buffer // the asset source
// }
// console.log('Asset', chunkOrAsset);
} else {
// For chunks, this contains
// {
// code: string, // the generated JS code
// dynamicImports: string[], // external modules imported dynamically by the chunk
// exports: string[], // exported variable names
// facadeModuleId: string | null, // the id of a module that this chunk corresponds to
// fileName: string, // the chunk file name
// imports: string[], // external modules imported statically by the chunk
// isDynamicEntry: boolean, // is this chunk a dynamic entry point
// isEntry: boolean, // is this chunk a static entry point
// map: string | null, // sourcemaps if present
// modules: { // information about the modules in this chunk
// [id: string]: {
// renderedExports: string[]; // exported variable names that were included
// removedExports: string[]; // exported variable names that were removed
// renderedLength: number; // the length of the remaining code in this module
// originalLength: number; // the original length of the code in this module
// };
// },
// name: string // the name of this chunk as used in naming patterns
// }
// console.log('Chunk', chunkOrAsset.modules);
}
}
// or write the bundle to disk
await bundle.write(outputOptions);
}
let configFile = configFileName ? require(configFileName) : '';
let ignoreFiles = ['**/*.test.tsx'];
if (configFile.ignoreFiles) {
ignoreFiles = ignoreFiles.concat(configFile.ignoreFiles)
}
const srcDir = path.join(__dirname, srcDirPath);
glob("**/*.module.tsx", {cwd: srcDir, ignore: ignoreFiles}, function (er, files) {
console.log('rollup for number of module ' + files.length)
for (var i = 0; i < files.length; i++) {
const fileName = srcDir +"/"+ files[i];
console.log(fileName);
// console.log(path.parse(fileName));
console.log("fileName ......................................................");
// see below for details on the options
// const inputOptions = {
// // core input options
// external,
// input, // required
// plugins,
//
// // advanced input options
// cache,
// inlineDynamicImports,
// manualChunks,
// onwarn,
// preserveModules,
//
// // danger zone
// acorn,
// acornInjectPlugins,
// context,
// moduleContext,
// preserveSymlinks,
// shimMissingExports,
// treeshake,
//
// // experimental
// chunkGroupingSize,
// experimentalCacheExpiry,
// experimentalOptimizeChunks,
// experimentalTopLevelAwait,
// perf
// };
const inputOptions = {
// core input options
// external:{
//
// },
// input: './src/**/AccountMailBoxFull.tsx',
input: fileName,
plugins: [
typescript({lib: ["es5", "es6", "dom"], target: "es5"}),
scss({
output: outDirPath + path.parse(fileName).name + '.css',
// output: function (styles, styleNodes) {
// // console.log(styleNodes);
// // console.log(styles);
//
// let fileData = 'appendStyle("' + styles + '")';
//
// console.log("..................." + files[i]);
// fs.appendFile(files[i], fileData, function (err) {
// if (err) throw err;
// console.log('Saved!');
// });
//
// // writeFileSync('bundle.css', styles)
//
// },
}),
// multiEntry()
],
// advanced input options
};
// const outputOptions = {
// // core output options
// dir,
// file,
// format, // required
// globals,
// name,
//
// // advanced output options
// assetFileNames,
// banner,
// chunkFileNames,
// compact,
// entryFileNames,
// extend,
// footer,
// interop,
// intro,
// outro,
// paths,
// sourcemap,
// sourcemapExcludeSources,
// sourcemapFile,
// sourcemapPathTransform,
//
// // danger zone
// amd,
// dynamicImportFunction,
// esModule,
// exports,
// freeze,
// indent,
// namespaceToStringTag,
// noConflict,
// preferConst,
// strict
// };
let microFrontendReactV16 = {};
const outputOptions = {
// core output options
dir: outDirPath,
format: 'umd',
globals: {
react: 'microFrontendReactV16.React',
reactstrap: 'microFrontendReactV16.reactstrap',
'query-string' : 'microFrontendReactV16.qs',
'react-loader-spinner': 'microFrontendReactV16.react-loader-spinner',
'react-redux' : 'microFrontendReactV16.react-redux',
redux : 'microFrontendReactV16.redux',
'rxjs' : 'microFrontendReactV16.rxjs',
'redux-observable' : 'microFrontendReactV16.redux-observable',
'rxjs/operators' : 'microFrontendReactV16.rxoperators'
},
name : path.parse(fileName).name.split(".")[0],
// advanced output options
// assetFileNames,
// banner,
// chunkFileNames,
// compact,
// entryFileNames,
// extend,
// footer,
// interop,
// intro,
// outro,
// paths,
sourcemap: true
// sourcemapExcludeSources,
// sourcemapFile,
// sourcemapPathTransform,
};
build(inputOptions,outputOptions).then((res)=>{
// console.log(res);
// write css code in component js file
console.log(outputOptions.name);
// method 1
// var data = fs.readFileSync(outDirPath + outputOptions.name.split(".")[0] +'.css','utf8');
// let styles = data;
//
// // Invoke the next step here however you like
// console.log(typeof styles); // Put all of the code here (not the best solution)
// // processFile(); // Or put the next step in a function and invoke it
//
// let fileData = "appendStyle('" + styles.toString() + "')";
//
//
// fs.appendFile(outDirPath + outputOptions.name.split(".")[0] +'.js', fileData, function (err) {
// if (err) throw err;
// console.log('Saved!');
// });
// method 2
// fs.readFile(outDirPath + outputOptions.name.split(".")[0] +'.css' , 'utf8' ,function read(err, data) {
// if (err) {
// console.log('errrrr');
// throw err;
// }
// let styles = data;
//
// // Invoke the next step here however you like
// console.log(styles); // Put all of the code here (not the best solution)
// // processFile(); // Or put the next step in a function and invoke it
//
// let fileData = 'appendStyle("' + styles + '")';
//
//
// fs.appendFile(outDirPath + outputOptions.name.split(".")[0] +'.js',fileData, function (err) {
// if (err) throw err;
// console.log('Saved!');
// });
//
// });
// method 3
var data = '';
var readStream = fs.createReadStream(outDirPath + path.parse(fileName).name +'.css' , 'utf8');
readStream.on('data', function(chunk) {
data += chunk;
}).on('end', function() {
console.log("build is done for " + fileName);
let styles = data;
// console.log(styles);
var strSingleLineText = styles.replace(
// Replace out the new line character.
new RegExp( "\\n", "g" ),
// Put in ... so we can see a visual representation of where
// the new line characters were replaced out.
""
);
// console.log(strSingleLineText);
let fileData = 'var temp = \' ' + strSingleLineText + '\'\n';
fileData = fileData + 'appendStyle(temp)';
fs.appendFile(outDirPath + path.parse(fileName).name +'.js',fileData, function (err) {
if (err) throw err;
console.log('Saved!');
});
});
}).catch((errObj)=>{
console.log('rollup build error for file ' + fileName);
console.log(errObj);
});
}
});