htmx/scripts/www.js
Daniel J. Summers 8564251136 Sync content from 1.8.6 release
- Update path for test generation script
2023-03-08 11:34:42 -05:00

29 lines
1.5 KiB
JavaScript

var config = require('../package.json');
var fs = require('fs-extra');
console.log(config.version)
var testRoot = "www/static/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/chai-dom/chai-dom.js", currentReleaseRoot + "/node_modules/chai-dom/chai-dom.js");
fs.copySync("node_modules/sinon/pkg/sinon.js", currentReleaseRoot + "/node_modules/sinon/pkg/sinon.js");
fs.copySync("node_modules/mock-socket/dist/mock-socket.js", currentReleaseRoot + "/node_modules/mock-socket/dist/mock-socket.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");
fs.copySync("src/ext/preload.js", "www/js/preload.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);