-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert to monorepo and revamp build system (#350)
* Make it a monorepo and convert demos to TypeScript * Updates * Redo build system * Gut old build system and bump all dependencies * Fix package build * Cleanup and fix tests * Format * Update README * Format
- Loading branch information
1 parent
8414a55
commit ca8ecb9
Showing
59 changed files
with
3,321 additions
and
4,065 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,11 @@ lib-cov | |
pids | ||
logs | ||
results | ||
coverage | ||
coverage | ||
.nyc_output | ||
dist | ||
dist | ||
build | ||
lib | ||
|
||
npm-debug.log | ||
.idea/ | ||
.idea/ |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "console-demo", | ||
"type": "module", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"start": "npm run build && node build/demo.js", | ||
"build": "tsc" | ||
}, | ||
"dependencies": { | ||
"jsondiffpatch": "^0.5.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "~5.3.2" | ||
} | ||
} |
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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es6", | ||
"lib": ["es6"], | ||
"module": "node16", | ||
"outDir": "build", | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"skipLibCheck": false | ||
} | ||
} |
Oops, something went wrong.