| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | var path = require("path"); | 
					
						
							|  |  |  | var async = require("async"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function LibManifestPlugin(options) { | 
					
						
							|  |  |  | 	this.options = options; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | module.exports = LibManifestPlugin; | 
					
						
							|  |  |  | LibManifestPlugin.prototype.apply = function(compiler) { | 
					
						
							|  |  |  | 	compiler.plugin("emit", function(compilation, callback) { | 
					
						
							|  |  |  | 		async.forEach(compilation.chunks, function(chunk, callback) { | 
					
						
							| 
									
										
										
										
											2016-07-13 17:03:14 +08:00
										 |  |  | 			if(!chunk.isInitial()) { | 
					
						
							| 
									
										
										
										
											2015-12-17 02:45:48 +08:00
										 |  |  | 				callback(); | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2015-12-17 02:45:48 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 			var targetPath = compilation.getPath(this.options.path, { | 
					
						
							|  |  |  | 				hash: compilation.hash, | 
					
						
							|  |  |  | 				chunk: chunk | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2016-01-30 18:43:22 +08:00
										 |  |  | 			var name = this.options.name && compilation.getPath(this.options.name, { | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 				hash: compilation.hash, | 
					
						
							|  |  |  | 				chunk: chunk | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 			var manifest = { | 
					
						
							|  |  |  | 				name: name, | 
					
						
							|  |  |  | 				type: this.options.type, | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 				content: chunk.modules.reduce(function(obj, module) { | 
					
						
							| 
									
										
										
										
											2015-07-16 06:19:23 +08:00
										 |  |  | 					if(module.libIdent) { | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 						var ident = module.libIdent({ | 
					
						
							|  |  |  | 							context: this.options.context || compiler.options.context | 
					
						
							|  |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2015-07-16 06:19:23 +08:00
										 |  |  | 						if(ident) { | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 							obj[ident] = module.id; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					return obj; | 
					
						
							|  |  |  | 				}.bind(this), {}) | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 			var content = new Buffer(JSON.stringify(manifest, null, 2), "utf-8"); | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 			compiler.outputFileSystem.mkdirp(path.dirname(targetPath), function(err) { | 
					
						
							| 
									
										
										
										
											2015-07-16 06:19:23 +08:00
										 |  |  | 				if(err) return callback(err); | 
					
						
							| 
									
										
										
										
											2015-05-17 00:27:59 +08:00
										 |  |  | 				compiler.outputFileSystem.writeFile(targetPath, content, callback); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}.bind(this), callback); | 
					
						
							|  |  |  | 	}.bind(this)); | 
					
						
							|  |  |  | }; |