Sha256: d2604d9c3e45aa94f33c286023a4fdb4279b16d402de12b9992f89a4b45bb812
Contents?: true
Size: 1.46 KB
Versions: 40
Compression:
Stored size: 1.46 KB
Contents
var standaloneLibDir = "lib/jasmine-" + jasmineVersion; function root(path) { return "./" + path; } function libJasmineCore(path) { return root("lib/jasmine-core/" + path); } function libConsole() { return "lib/console/" } function dist(path) { return root("dist/" + path); } module.exports = { standalone: { options: { archive: root("dist/jasmine-standalone-" + global.jasmineVersion + ".zip") }, files: [ { src: [ root("MIT.LICENSE") ] }, { src: [ "jasmine_favicon.png"], dest: standaloneLibDir, expand: true, cwd: root("images") }, { src: [ "jasmine.js", "jasmine-html.js", "jasmine.css" ], dest: standaloneLibDir, expand: true, cwd: libJasmineCore("") }, { src: [ "console.js" ], dest: standaloneLibDir, expand: true, cwd: libConsole() }, { src: [ "boot.js" ], dest: standaloneLibDir, expand: true, cwd: libJasmineCore("boot") }, { src: [ "SpecRunner.html" ], dest: root(""), expand: true, cwd: dist("tmp") }, { src: [ "*.js" ], dest: "src", expand: true, cwd: libJasmineCore("example/src/") }, { src: [ "*.js" ], dest: "spec", expand: true, cwd: libJasmineCore("example/spec/") } ] } };
Version data entries
40 entries across 40 versions & 2 rubygems