Coder Social home page Coder Social logo

bluefrogsoftware / webpack-raw-bundler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from itslofus/webpack-raw-bundler

0.0 1.0 0.0 15 KB

A Webpack plugin to merge your files together, unedited, into a single file.

License: MIT License

JavaScript 100.00%

webpack-raw-bundler's Introduction

A Webpack plugin to merge your files, unedited, into a single file.

Installation

npm install webpack-raw-bundler
var RawBundlerPlugin = require('webpack-raw-bundler');

Usage

When you don't have time to make the ordinary require statements, or when your libraries don't support modular exporting, you can use this to bundle them all together so that their globals are actually global.

In other words, from the old:

<script src="js/jquery.js"></script>
<script src="js/silly.js"></script>
<script>
	$(silly()); // Some function in silly.js's global scope
</script>

To the new:

<script src="js/bundle.js"></script>
<script>
	$(silly());
</script>

Installing to the config

Add the following plugin init statement to the same block as your other webpack plugins. Simple shows only the required options, while complete shows all the options.

Simple

module.exports = {
	plugins: [
		new RawBundlerPlugin({
			bundles: [ "vendor.js" ],
			"vendor.js": [ 'js/*.js' ]
		})
	]
}

Complete

module.exports = {
	plugins: [
		new RawBundlerPlugin({
			excludedFilenames: [/angulartics/],
			readEncoding: "utf-8",
			includeFilePathComments: false,
			allowDuplicatesInBundle: false,
			printProgress: false,
			fileEnding: "\n\n",
			commentTags: { Start: "/* ", End: " */" },
			bundles: [
				"vendor.js",
				"styles.css",
				"vendor.lib.js"
			],
			"vendor.js": [
				'js/*.js'
			],
			"vendor.lib.js": [{
				path: "../build/*.js",
				match: /vendor/
			}],
			"styles.css": [
				'css/bootstrap.css',
				'css/edits.css'
			]
		})
	]
}

Example Output

This generates two files with merged js and css content.

<!-- Simple -->
<script src="/vendor.js"></script>

<!-- Complete -->
<script src="/vendor.js"></script>
<script src="/vendor.lib.js"></script>
<link rel="stylesheet" href="/styles.css">

What Actually Happens

Say we have a bundle defined as follows:

"complete.js": [
	"a.js",
	"b.js"
]

And the following file contents:

// a.js
function a_simple() {
	console.log("a_simple called.");
}
var a_global = function () { a_simple(); };
// b.js
function b_simple() {
	console.log("b_simple called.");
}
var b_global = function () { a_global(); b_simple(); };

When webpack is called, the following complete.js will be made:

// complete.js

// a.js
function a_simple() {
	console.log("a_simple called.");
}
var a_global = function () { a_simple(); };

// b.js
function b_simple() {
	console.log("b_simple called.");
}
var b_global = function () { a_global(); b_simple(); };

Note: The filenames will not be appended to the tops of the files unless includeFilePathComments is falgged as true.

Options

bundles

(Required)

The output files to be made. These will be outputted to the same directory as set in module.exports.output.path of your webpack.config

[Files]

(Required)

Must have the same name as a member of bundles. The sub-array are the files to are be included in the bundle. The sub-array has the following format options:

"bundle_name.extension" : [
	"pathtype1.ext",
	"*.ext",
	{
		path: "pathtype2.ext"
		match: /good_file_standard/ /* Overpowerd by the exlusion variable */
	},
	{ path: "*.ext2" }
]

If a path is given a wildcard, it will add all files, including all subdirectories, with the appropiate file extension from that folder on.

excludedFilenames

default: []

An array of regexp expressions that if a dynamically found filename is matched, will not be included.

readEncoding

default: utf-8

The encoding nodejs reads in. Look up the documentation for more information.

includeFilePathComments

default: false

Puts the file path of the added file, surrounded by commentTags, before the bundled file contents.

Note: If reading from an invlaid encoding type, ie: settings are utf-8 but file is encoded in utf-8-BOM, then you may seem some non-rendering characters generated after this.

allowDuplicatesInBundle

default: false

Per individual file bundle, are identical file names allowed to be parsed?

printProgress

default: false

At compile time, prints the current files being bundled to the console. Note: Since this plugin runs with async helpers, this output tends to get messy with multiple bundles.

commentTags

default: { Start: "/* ", End: " */" }

The comment flags that the path to the current bundled file gets wrapped in. Only read if includeFilePathComments is true.

fileEnding

default: \n\n

The string that gets appended to the end of a bundled file. Two new lines are the default for easy reading.

TODO

Add per item support for not walking into subdirectories.
Add support for `useAsLoader`
Add support for file watching
Add per bundle support for exlcusions

webpack-raw-bundler's People

Contributors

itslofus avatar asgeo1 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.