mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-30 14:31:47 +00:00
26 lines
1.2 KiB
JavaScript
26 lines
1.2 KiB
JavaScript
var config = require('../package.json');
|
|
var fs = require('fs-extra');
|
|
|
|
console.log(config.version)
|
|
|
|
var testRoot = "www/test/";
|
|
var currentReleaseRoot = testRoot + config.version;
|
|
fs.ensureDirSync(currentReleaseRoot);
|
|
fs.copySync("node_modules/mocha/mocha.js", currentReleaseRoot + "/node_modules/mocha/mocha.js");
|
|
fs.copySync("node_modules/mocha/mocha.css", currentReleaseRoot + "/node_modules/mocha/mocha.css");
|
|
fs.copySync("node_modules/chai/chai.js", currentReleaseRoot + "/node_modules/chai/chai.js");
|
|
fs.copySync("node_modules/sinon/pkg/sinon.js", currentReleaseRoot + "/node_modules/sinon/pkg/sinon.js");
|
|
fs.copySync("test/", currentReleaseRoot + "/test");
|
|
fs.copySync("src/", currentReleaseRoot + "/src");
|
|
fs.copySync("src/htmx.js", "www/js/htmx.js");
|
|
fs.copySync("src/ext/class-tools.js", "www/js/class-tools.js");
|
|
|
|
var testHTML = "<html><body style='font-family: sans-serif'><h1>HTMX TESTS</h1><ul>\n"
|
|
fs.readdirSync(testRoot).reverse().forEach(function(file){
|
|
if (file !== "index.html") {
|
|
testHTML += "<li><a href='/test/" + file + "/test'>" + file + "</a>\n";
|
|
}
|
|
});
|
|
testHTML += "</ul></body>"
|
|
fs.writeFileSync(testRoot + "/index.html", testHTML);
|