Skip to content

Commit

Permalink
Update TS and modernize build
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats committed Nov 23, 2024
1 parent 5507a1f commit 4637e46
Show file tree
Hide file tree
Showing 11 changed files with 793 additions and 433 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/dist/
/dist
**/dist
/control-dist/
node_modules/
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"@glimmer/env": "0.1.7",
"@release-it-plugins/lerna-changelog": "^6.0.0",
"@release-it-plugins/workspaces": "^4.0.0",
"@rollup/plugin-sucrase": "^5.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
Expand Down Expand Up @@ -85,6 +86,7 @@
"fast-glob": "^3.2.12",
"glob": "^10.2.3",
"js-yaml": "^4.1.0",
"knip": "^5.37.2",
"loader.js": "^4.7.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
Expand All @@ -103,7 +105,7 @@
"tracerbench": "^8.0.1",
"ts-node": "^10.9.1",
"turbo": "^1.9.3",
"typescript": "~5.0.4",
"typescript": "^5.7.2",
"vite": "^5.4.10",
"xo": "^0.54.2",
"zx": "^8.1.9"
Expand Down
4 changes: 2 additions & 2 deletions packages/@glimmer-workspace/build/lib/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type * as vite from 'vite';
export interface PackageInfo {
readonly name: string;
readonly root: string;
readonly main: string;
readonly exports: string;
}

export type JsonArray = JsonValue[];
Expand All @@ -21,7 +21,7 @@ export type Setting<T extends keyof CompilerOptions> = CompilerOptions[T] & stri
export type PackageJsonInline = string | [ExternalOperator, string];

export interface PackageJSON {
readonly main: string;
readonly exports: string;
readonly types: string;
readonly private: boolean;
readonly name: string;
Expand Down
Loading

0 comments on commit 4637e46

Please sign in to comment.