Skip to content
Merged

tsup #644

Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions .bs-config.js
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is left over from a previous web server that we used for docs.

This file was deleted.

1 change: 0 additions & 1 deletion .ncurc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ module.exports = {
"reject": [
"chai", // Moved to es6
"@types/chai", // Should match chai,
"rimraf", // Requires node 20
Copy link
Copy Markdown
Contributor Author

@hildjj hildjj Jul 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're node 20+ now, no need to keep rimraf back at a previous version. Chai still needs to be held back until either we switch to modules or I try testing it with require(mjs), which should work in node 20.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

require(mjs) should work, except for jest. TODO: remove Jest, which is a problem for another day.

],
};
33 changes: 0 additions & 33 deletions .npmignore
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to files: in package.json, so we can stop maintaining this brittle file.

This file was deleted.

33 changes: 0 additions & 33 deletions benchmark/index.css
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

35 changes: 0 additions & 35 deletions benchmark/index.html
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

137 changes: 0 additions & 137 deletions benchmark/index.js
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

2 changes: 1 addition & 1 deletion benchmark/runner.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const peg = require("../lib/peg");
const peg = globalThis.peggy || require("../lib/peg");
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hack so that we can use the global peggy in benchmarks, loaded before this script is run. Dramatically decreases the size of the benchmark, because the entirety of Peggy doesn't have to be bundled in. Increases my confidence that peggy.min.js is correct, since we're actually testing it a little.


const Runner = {
run(benchmarks, runCount, options, callbacks) {
Expand Down
37 changes: 0 additions & 37 deletions benchmark/server
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

22 changes: 0 additions & 22 deletions benchmark/vendor/jquery.scrollto/LICENSE
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

7 changes: 0 additions & 7 deletions benchmark/vendor/jquery.scrollto/jquery.scrollTo.js
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left over from old express server. Now tested from docs with eleventy as the server.

This file was deleted.

Loading
Loading