Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use content-tag so that we can work on Safari / iOS #1162

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/ember-repl/addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"broccoli-file-creator": "^2.1.1",
"change-case": "^5.1.2",
"common-tags": "^1.8.2",
"content-tag": "github:NullVoxPopuli/content-tag#browser-support-dist",
"line-column": "^1.0.2",
"magic-string": "^0.30.5",
"mdast": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-repl/addon/src/browser/cjs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function compileJS(code: string, extraModules?: ExtraModules): Prom
}

async function compileGJS({ code: input, name }: Info) {
let preprocessed = preprocess(input, name);
let preprocessed = await preprocess(input, name);
let result = await transform(preprocessed, name);

if (!result) {
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-repl/addon/src/browser/esm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function evalSnippet(code: string) {
}

async function compileGJS({ code: input, name }: Info) {
let preprocessed = preprocess(input, name);
let preprocessed = await preprocess(input, name);
let result = await transform(preprocessed, name, {
modules: false,
});
Expand Down
105 changes: 0 additions & 105 deletions packages/ember-repl/addon/src/browser/eti/babel-plugin.ts

This file was deleted.

7 changes: 0 additions & 7 deletions packages/ember-repl/addon/src/browser/eti/debug.ts

This file was deleted.

Loading