-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This better reflects the purpose of the folder, as it's also appropriate to publish other folders (like `dist/bin`) to `npm`.
- Loading branch information
Showing
27 changed files
with
122 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ const typedocSFTPPath = | |
"[email protected]:~/experiments.cubing.net/cubing.js-typedoc/"; | ||
const typedocURL = "https://experiments.cubing.net/cubing.js-typedoc/"; | ||
|
||
await rsync("./dist/sites/typedoc/", typedocSFTPPath); | ||
await rsync("./dist([-/])sites/typedoc/", typedocSFTPPath); | ||
console.log(`Done deploying. Go to: ${typedocURL}`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export * as alg from "../../../../../../../dist/lib/cubing/alg"; | ||
export * as bluetooth from "../../../../../../../dist/lib/cubing/bluetooth"; | ||
export * as kpuzzle from "../../../../../../../dist/lib/cubing/kpuzzle"; | ||
export * as notation from "../../../../../../../dist/lib/cubing/notation"; | ||
export * as protocol from "../../../../../../../dist/lib/cubing/protocol"; | ||
export * as puzzleGeometry from "../../../../../../../dist/lib/cubing/puzzle-geometry"; | ||
export * as puzzles from "../../../../../../../dist/lib/cubing/puzzles"; | ||
export * as scramble from "../../../../../../../dist/lib/cubing/scramble"; | ||
export * as stream from "../../../../../../../dist/lib/cubing/stream"; | ||
export * as search from "../../../../../../../dist/lib/cubing/search"; | ||
export * as twisty from "../../../../../../../dist/lib/cubing/twisty"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { needFolder } from "../../../../../lib/need-folder.js"; | ||
|
||
needFolder( | ||
new URL("../../../../../../dist/lib/cubing/alg", import.meta.url).pathname, | ||
"make build-esm", | ||
); | ||
|
||
import("./test.js"); |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
script/test/dist/cubing/perf/Alg.perf.js → script/test/dist/lib/cubing/perf/Alg.perf.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
.../dist/cubing/plain-esbuild-compat/main.js → ...t/lib/cubing/plain-esbuild-compat/main.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { needFolder } from "../../../../../lib/need-folder.js"; | ||
|
||
needFolder( | ||
new URL("../../../../../../dist/lib/cubing/scramble", import.meta.url) | ||
.pathname, | ||
"make build-esm", | ||
); | ||
|
||
import("./test.js"); |
File renamed without changes.
7 changes: 4 additions & 3 deletions
7
script/test/dist/cubing/vite/main.js → script/test/dist/lib/cubing/vite/main.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.