mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-14 06:50:01 -04:00
change import order
This commit is contained in:
parent
14294d8279
commit
9c4f157dd8
2 changed files with 5 additions and 5 deletions
|
@ -1,11 +1,11 @@
|
||||||
import "./location";
|
import "./native/eval.ts";
|
||||||
|
import "./location.ts";
|
||||||
import "./trustedTypes.ts";
|
import "./trustedTypes.ts";
|
||||||
import "./eval.ts";
|
|
||||||
import "./storage";
|
|
||||||
import "./element.ts";
|
|
||||||
import "./requests/fetch.ts";
|
import "./requests/fetch.ts";
|
||||||
import "./requests/xmlhttprequest.ts";
|
import "./requests/xmlhttprequest.ts";
|
||||||
import "./requests/websocket.ts"
|
import "./requests/websocket.ts"
|
||||||
|
import "./element.ts";
|
||||||
|
import "./storage.ts";
|
||||||
import "./css.ts";
|
import "./css.ts";
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { rewriteJs } from "../bundle";
|
import { rewriteJs } from "../../bundle";
|
||||||
|
|
||||||
const FunctionProxy = new Proxy(Function, {
|
const FunctionProxy = new Proxy(Function, {
|
||||||
construct(target, argArray) {
|
construct(target, argArray) {
|
Loading…
Add table
Add a link
Reference in a new issue