Skip to content

Commit

Permalink
add TypeScript ATA & VFS
Browse files Browse the repository at this point in the history
  • Loading branch information
hatemhosny committed May 19, 2024
1 parent 2a38c89 commit 3ad0c73
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 9 deletions.
2 changes: 2 additions & 0 deletions dist/typescript-ata/typescript-ata.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/typescript-vfs/typescript-vfs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 24 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@live-codes/browser-compilers",
"version": "0.10.0",
"version": "0.11.0",
"description": "Compilers that run in the browser, for use in livecodes.io",
"author": "Hatem Hosny",
"license": "MIT",
Expand Down Expand Up @@ -39,6 +39,8 @@
"@testing-library/react": "14.0.0",
"@tokencss/core": "0.1.0",
"@tokencss/postcss": "0.0.5",
"@typescript/ata": "0.9.4",
"@typescript/vfs": "1.5.0",
"@unocss/core": "0.53.1",
"@unocss/preset-attributify": "0.53.1",
"@unocss/preset-icons": "0.53.1",
Expand Down Expand Up @@ -103,7 +105,7 @@
"postcss-cli": "8.3.1",
"recursive-fs": "2.1.0",
"standard-version": "9.3.0",
"typescript": "4.4.3"
"typescript": "4.4.4"
},
"config": {
"commitizen": {
Expand Down
16 changes: 16 additions & 0 deletions scripts/vendors.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,3 +500,19 @@ esbuild.build({
outfile: 'dist/bbob/bbob.js',
globalName: 'BBob',
});

// @typescript/ata
esbuild.build({
...baseOptions,
entryPoints: ['vendor_modules/imports/typescript-ata.js'],
outfile: 'dist/typescript-ata/typescript-ata.js',
globalName: 'typescriptATA',
});

// @typescript/ata
esbuild.build({
...baseOptions,
entryPoints: ['vendor_modules/imports/typescript-vfs.js'],
outfile: 'dist/typescript-vfs/typescript-vfs.js',
globalName: 'typescriptVFS',
});
1 change: 1 addition & 0 deletions vendor_modules/imports/typescript-ata.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@typescript/ata';
1 change: 1 addition & 0 deletions vendor_modules/imports/typescript-vfs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@typescript/vfs';

0 comments on commit 3ad0c73

Please sign in to comment.