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

bug/fix import reference to forked acorn-jsx-esm package #151

Merged
Merged
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
2 changes: 1 addition & 1 deletion src/jsx-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import * as walk from 'acorn-walk';
import { generate } from '@projectevergreen/escodegen-esm';
import fs from 'fs';
import jsx from 'acorn-jsx';
import jsx from '@projectevergreen/acorn-jsx-esm';
import { parse, parseFragment, serialize } from 'parse5';

const jsxRegex = /\.(jsx)$/;

// TODO same hack as definitions

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (20)

Unexpected ' TODO' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected 'todo' comment: 'TODO same hack as definitions'

Check warning on line 12 in src/jsx-loader.js

View workflow job for this annotation

GitHub Actions / build (18)

Unexpected ' TODO' comment: 'TODO same hack as definitions'
// https://github.com/ProjectEvergreen/wcc/discussions/74
let string;

Expand Down
Loading