-
Notifications
You must be signed in to change notification settings - Fork 484
Comparing changes
Open a pull request
base repository: facebook/jscodeshift
base: 1ed8ccddaa06e7126e56d5ce597e5aecbbffc22a
head repository: facebook/jscodeshift
compare: 13bf8067f5a1fc1010247c78e8ac01c543d5dc2e
Commits on Dec 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6e38213 - Browse repository at this point
Copy the full SHA 6e38213View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fc6ca1 - Browse repository at this point
Copy the full SHA 3fc6ca1View commit details
Commits on Dec 6, 2018
-
Improve/fix @babel/register usage (closes #294)
The plugin names used have been incorrect. I'm also not 100% sure where `@babel/register` tries to load the plugins from, so to be safe, I require them directly. Because we use `preset-env` now, we can actually transpiling language features that the running Node version supports. This is done by setting `{targets: {node: true}}`. We also don't have to include the `proposal-object-rest-spread` plugin anymore, since it is part of ES2018 and thus handled by `preset-env`.
Configuration menu - View commit details
-
Copy full SHA for cb92c48 - Browse repository at this point
Copy the full SHA cb92c48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55ef34d - Browse repository at this point
Copy the full SHA 55ef34dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 891dea3 - Browse repository at this point
Copy the full SHA 891dea3View commit details
Commits on Dec 14, 2018
-
Introduce jest snapshot testing utils (fixes #135)
- Refactored `runInlineTest` and extracted `applyTransform` function - Introduced `runSnapshotTest`, same as `runInlineTest` but takes no `expectedOutput` - maybe worth merging the two, but that requires breaking change - Introduced `defineSnapshotTest`, same as `defineInlineTest` but takes no `expectedOutput` - maybe worth merging the two, but that requires breaking change - `runInlineTest` and `runSnapshopTest` now both also return the result `applyTransform` - This can be used to take the result of one run and use it for another (check for idempotent)
Configuration menu - View commit details
-
Copy full SHA for 413c558 - Browse repository at this point
Copy the full SHA 413c558View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60cfda5 - Browse repository at this point
Copy the full SHA 60cfda5View commit details
Commits on Jan 16, 2019
-
Fix TypeError in case no files were found (#295)
Fixes "UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'Symbol(Symbol.iterator)' of undefined"
Configuration menu - View commit details
-
Copy full SHA for 16fcf0a - Browse repository at this point
Copy the full SHA 16fcf0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 76734f7 - Browse repository at this point
Copy the full SHA 76734f7View commit details
Commits on Jan 19, 2019
-
Parse unknown CLI options as JSON
... to be compatible with nomnom and preserve behavior existing scripts expect.
1Configuration menu - View commit details
-
Copy full SHA for ea1a4a4 - Browse repository at this point
Copy the full SHA ea1a4a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for d289b23 - Browse repository at this point
Copy the full SHA d289b23View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dd0eba - Browse repository at this point
Copy the full SHA 6dd0ebaView commit details
Commits on Mar 6, 2019
-
Improve handling of .gitignore files. (#306)
* Omit comments from list of patterns. * Support .gitignore files with \r\n linebreaks.
Configuration menu - View commit details
-
Copy full SHA for ec3ab98 - Browse repository at this point
Copy the full SHA ec3ab98View commit details -
Remove transform file .js restriction for testUtils (#308)
Since we are able to write transformers in TS, the .js extension hard coded in testUtils not allow us to use it to write tests for TS transform modules. And `require('some-module')` will automatically infer some-module's extension whether it is ended with '.js' or '.ts', it should be safe to remove ',js'.
Configuration menu - View commit details
-
Copy full SHA for 036d62a - Browse repository at this point
Copy the full SHA 036d62aView commit details
Commits on Mar 13, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e23d7fb - Browse repository at this point
Copy the full SHA e23d7fbView commit details
Commits on Apr 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c5d60af - Browse repository at this point
Copy the full SHA c5d60afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2890872 - Browse repository at this point
Copy the full SHA 2890872View commit details
Commits on Jun 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2ce79f5 - Browse repository at this point
Copy the full SHA 2ce79f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef480de - Browse repository at this point
Copy the full SHA ef480deView commit details
Commits on Jul 18, 2019
-
Fix Unhandled Promise rejection when called with a non-existent path
When jscodeshift is called with a path that doesn't exist, `concatAll()` gets called with `undefined`, which isn't an interable, and throws an error. This PR fixes the promise being resolved by matching it with the ignore case.
Sunil Pai authoredJul 18, 2019 Configuration menu - View commit details
-
Copy full SHA for 298690d - Browse repository at this point
Copy the full SHA 298690dView commit details
Commits on Aug 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8146833 - Browse repository at this point
Copy the full SHA 8146833View commit details
Commits on Aug 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2c269a7 - Browse repository at this point
Copy the full SHA 2c269a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d63aa84 - Browse repository at this point
Copy the full SHA d63aa84View commit details
Commits on Sep 6, 2019
-
Merge pull request #334 from threepointone/patch-1
Fix Unhandled Promise rejection when called with a non-existent path
Configuration menu - View commit details
-
Copy full SHA for 5ed9108 - Browse repository at this point
Copy the full SHA 5ed9108View commit details
Commits on Sep 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7748dba - Browse repository at this point
Copy the full SHA 7748dbaView commit details -
fix: preserve file extension for remote file
There is behavior in this program that depends on the extension of the transformFile, notably how babel runs (or doesn't). There was a bug when requesting a remote transformFile authored as an ES6 module because of the temp filename being used. This commit preserves the original file extension used when writing the remote file to the temp one.
Configuration menu - View commit details
-
Copy full SHA for 5a6a868 - Browse repository at this point
Copy the full SHA 5a6a868View commit details
Commits on Sep 30, 2019
-
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
Configuration menu - View commit details
-
Copy full SHA for a268d0d - Browse repository at this point
Copy the full SHA a268d0dView commit details
Commits on Oct 21, 2019
-
Introduce jest snapshot testing utils (fixes #135) (#297)
Introduce jest snapshot testing utils (fixes #135)
Configuration menu - View commit details
-
Copy full SHA for 8512b69 - Browse repository at this point
Copy the full SHA 8512b69View commit details
Commits on Oct 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1764942 - Browse repository at this point
Copy the full SHA 1764942View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1201750 - Browse repository at this point
Copy the full SHA 1201750View commit details
Commits on Oct 29, 2019
-
Merge pull request #332 from skovy/skovy/support-parsers-in-test-utils
Support different parsers in the test utils
Configuration menu - View commit details
-
Copy full SHA for 08b8608 - Browse repository at this point
Copy the full SHA 08b8608View commit details -
Bump js-yaml from 3.12.0 to 3.13.1
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.13.1. - [Release notes](https://github.com/nodeca/js-yaml/releases) - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](nodeca/js-yaml@3.12.0...3.13.1) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 835c001 - Browse repository at this point
Copy the full SHA 835c001View commit details -
Bump handlebars from 4.0.12 to 4.5.1
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.12 to 4.5.1. - [Release notes](https://github.com/wycats/handlebars.js/releases) - [Changelog](https://github.com/wycats/handlebars.js/blob/v4.5.1/release-notes.md) - [Commits](handlebars-lang/handlebars.js@v4.0.12...v4.5.1) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 05b59bb - Browse repository at this point
Copy the full SHA 05b59bbView commit details -
Bump mixin-deep from 1.3.1 to 1.3.2
Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/jonschlinkert/mixin-deep/releases) - [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 67395a6 - Browse repository at this point
Copy the full SHA 67395a6View commit details -
Bump lodash from 4.17.11 to 4.17.15
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.15. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.11...4.17.15) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 3c04772 - Browse repository at this point
Copy the full SHA 3c04772View commit details
Commits on Oct 30, 2019
-
Merge pull request #349 from facebook/dependabot/npm_and_yarn/handleb…
…ars-4.5.1 Bump handlebars from 4.0.12 to 4.5.1
Configuration menu - View commit details
-
Copy full SHA for d4b31b4 - Browse repository at this point
Copy the full SHA d4b31b4View commit details -
Merge pull request #350 from facebook/dependabot/npm_and_yarn/mixin-d…
…eep-1.3.2 Bump mixin-deep from 1.3.1 to 1.3.2
Configuration menu - View commit details
-
Copy full SHA for 006bae8 - Browse repository at this point
Copy the full SHA 006bae8View commit details -
Merge pull request #348 from facebook/dependabot/npm_and_yarn/js-yaml…
…-3.13.1 Bump js-yaml from 3.12.0 to 3.13.1
Configuration menu - View commit details
-
Copy full SHA for 6fcdd10 - Browse repository at this point
Copy the full SHA 6fcdd10View commit details -
Merge pull request #351 from facebook/dependabot/npm_and_yarn/lodash-…
…4.17.15 Bump lodash from 4.17.11 to 4.17.15
Configuration menu - View commit details
-
Copy full SHA for c84b745 - Browse repository at this point
Copy the full SHA c84b745View commit details
Commits on Dec 10, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 60d6880 - Browse repository at this point
Copy the full SHA 60d6880View commit details
Commits on Dec 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 56b44eb - Browse repository at this point
Copy the full SHA 56b44ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 24b032b - Browse repository at this point
Copy the full SHA 24b032bView commit details -
Merge pull request #355 from jbrown215/bump_version
Bump flow parser, update changelog, bump jscodeshift version
Configuration menu - View commit details
-
Copy full SHA for 308e246 - Browse repository at this point
Copy the full SHA 308e246View commit details
Commits on Dec 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e349703 - Browse repository at this point
Copy the full SHA e349703View commit details
Commits on Apr 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 62f2888 - Browse repository at this point
Copy the full SHA 62f2888View commit details
Commits on Apr 25, 2020
-
Merge pull request #371 from mickaelzhang/update-mm-method
Rename micromatch any to isMatch
Configuration menu - View commit details
-
Copy full SHA for d7631b4 - Browse repository at this point
Copy the full SHA d7631b4View commit details
Commits on May 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 5885662 - Browse repository at this point
Copy the full SHA 5885662View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4acfd61 - Browse repository at this point
Copy the full SHA 4acfd61View commit details
Commits on May 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9db8928 - Browse repository at this point
Copy the full SHA 9db8928View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36c7e2e - Browse repository at this point
Copy the full SHA 36c7e2eView commit details
There are no files selected for viewing
This file was deleted.