-
Notifications
You must be signed in to change notification settings - Fork 4
Decaffeinate #52
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
Merged
Merged
Decaffeinate #52
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
2be3c44
move client coffeescript to javascript source location
paul90 9c61551
convert client coffeescript to javascript
paul90 034c14f
rename test.coffee to test.js
paul90 538ee48
covert tests to javascript
paul90 b0e999b
replace grunt with esbuild and build script
paul90 198794d
replace obsolete travis with github action
paul90 0a9cad6
some tidying
paul90 bc6dded
remove use of lodash
paul90 04ab4b8
Update test.yml
paul90 edcdbc8
update contributors
paul90 75143a4
some tidying up
paul90 35a415b
add eslint and prettier config
paul90 fa7ea7a
reformatted with prettier
paul90 a7862fd
remove need for declaration in case
paul90 e607789
resolve scoping of `omitted`
paul90 f6bb789
prettier and eslint config changes
paul90 3ec6cd4
Some editor config, for vscode (and related), and zed.
paul90 4ba2704
warn `no-unused-vars` rather than error.
paul90 1faf1c8
update configs, and apply
paul90 65e0eb3
0.7.0-rc.0
paul90 37682ed
npm package trimming
paul90 2f5d080
0.7.0-rc.1
paul90 49896e3
fix typo
paul90 9419e46
some final linting, and package trimming
paul90 c67b982
add missing script/config
paul90 a5bf527
move client source to `src/client`
paul90 c13f489
0.7.0-rc.2
paul90 9b12edb
corrent include in test
paul90 9b5f5b4
don't ignore source code!
paul90 74ac2f6
add back 'grunt-git-authors'
paul90 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| # Releases https://github.com/nodejs/release#release-schedule | ||
| node-version: | ||
| - 18.x # Maintenance | ||
| - 20.x # Maintenance | ||
| - 22.x # Active | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - run: npm ci | ||
| - run: npm test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /*/*.js | ||
| /*/*.map | ||
| /pages/activity-test---* | ||
| client/activity.* | ||
| coverage | ||
| node_modules | ||
| npm-debug.log | ||
| meta-client.json | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| /**/*.coffee | ||
| Gruntfile.js | ||
| /pages/activity-test---* | ||
| coverage | ||
| scripts | ||
| src | ||
| test | ||
| meta-client.json | ||
| eslint.config.js | ||
| .github | ||
| .prettier* | ||
| .vscode | ||
| .zed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| client/*.js | ||
| coverage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "semi": false, | ||
| "singleQuote": true, | ||
| "bracketSpacing": true, | ||
| "bracketSameLine": true, | ||
| "arrowParens": "avoid", | ||
| "printWidth": 120 | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "editor.codeActionsOnSave": { | ||
| "source.fixAll.eslint": "explicit" | ||
| }, | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode", | ||
| "editor.formatOnSave": true | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| // Folder-specific settings | ||
| // | ||
| // For a full list of overridable settings, and general information on folder-specific settings, | ||
| // see the documentation: https://zed.dev/docs/configuring-zed#settings-files | ||
| { | ||
| "format_on_save": "on" | ||
| } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure this fixes ignoring the source, or does it need a leading / in front?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.