Skip to content

Commit 883a146

Browse files
committed
update deps and build script
1 parent a570733 commit 883a146

10 files changed

+1847
-727
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/bun.lock
12
/node_modules/
23
/pnpm-lock.yaml
34
/package-lock.json

out/out.js

+1,104
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/out.js.LICENSE.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* based on code from:
3+
*
4+
* @license RequireJS text 0.25.0 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.
5+
* Available via the MIT or new BSD license.
6+
* see: http://github.com/jrburke/requirejs for details
7+
*/

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
"type": "module",
44
"private": true,
55
"devDependencies": {
6-
"ace-code": "^1.37.5",
6+
"ace-code": "^1.39.0",
77
"acorn": "^8.14.0",
8-
"terser-webpack-plugin": "^5.3.10",
98
"ts-loader": "^9.5.2",
10-
"webpack": "^5.97.1",
9+
"webpack": "^5.98.0",
1110
"webpack-cli": "^6.0.1"
1211
},
1312
"scripts": {

src/Constants.ts

-5
This file was deleted.

src/Rewriter.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Class, Expression, Function, ModuleDeclaration, Parser, Pattern, Statement, VariableDeclaration } from "acorn";
2-
import Constants from "./Constants";
32

43
function parsePatternNames(list: string[], it: Pattern) {
54
switch (it.type) {

src/_global.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
/// <reference lib="es2020" />
2+
13
declare global {
24
export type nul = null | void | undefined;
35
export type globalThis = typeof globalThis;
46
export interface Window extends Record<any, any>, globalThis {
57
}
8+
9+
export const enum Constants {
10+
module = "module"
11+
}
612
}
713

814
export { };

src/main.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import * as ace from "ace-code";
22
import * as js from "ace-code/src/mode/typescript";
33
import Rewriter from "./Rewriter";
44
import Module from "./Module";
5-
import Constants from "./Constants";
65

76
"use strict"; debugger; (async ({ window: win, document: doc }: {
87
readonly window: Window;

src/webpack.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const config = {
4848
optimization: {
4949
minimize: true,
5050
minimizer: [new TerserPlugin({
51-
parallel: true,
51+
parallel: false,
5252
terserOptions: {
5353
ecma: 2017,
5454
mangle: true,
@@ -80,7 +80,10 @@ const config = {
8080
}
8181
}
8282
})],
83+
sideEffects: true,
84+
usedExports: true,
8385
runtimeChunk: false,
86+
mangleExports: true,
8487
checkWasmTypes: true,
8588
providedExports: true,
8689
removeEmptyChunks: true,

static/main.js

+723-716
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)