UNPKG

webpack

Version:

Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.

6 lines 256 B
it("should define __dirname and __filename", function() { __dirname.should.be.eql(""); __filename.should.be.eql("index.js"); require("./dir/file").dirname.should.be.eql("dir"); require("./dir/file").filename.should.match(/^dir[\\\/]file.js$/); });