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

Add first class Javascript/Typescript support to the Mill build tool #4398

Merged
merged 25 commits into from
Jan 29, 2025
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
monyedavid committed Jan 28, 2025
commit 38561e65b9548c9f3a606cb537852e6db9ed9758
2 changes: 1 addition & 1 deletion example/javascriptlib/linting/1-linting/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ foo/src/foo.ts
...
...1 problem (1 error, 0 warnings)

> sed -i '' "s/'Hello World'/\`Hello World \${args.join(' ')}\`/g" foo/src/foo.ts # fix lint error.
> sed -i '' "s|console.log('Hello World')|console.log(\`Hello World \${args.join(' ')}\`)|" foo/src/foo.ts # fix lint error.

> cat foo/src/foo.ts # initial code with lint errors.
export class Foo{
Expand Down
Loading