Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Update to latest jscodeshift #17

Merged
merged 1 commit into from
Jun 14, 2017
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import type Other from 'Other';
import type Some from 'Some';

declare function fancy(cb: Some => Other): void;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare function fancy(cb: Some => Other): void;
1 change: 1 addition & 0 deletions __tests__/requiresTransform-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import path from 'path';
const TESTS = [
'add-array-expressions',
'add-assignments',
'add-bare-function-argument-types',
'add-classes',
'add-common-aliases',
'add-constructor-arguments',
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@
"watch": "npm run clean && babel src --out-dir lib --watch"
},
"dependencies": {
"babel-core": "5.8.38",
"immutable": "3.7.6",
"jscodeshift": "0.3.30"
"jscodeshift": "^0.3.31"
},
"devDependencies": {
"ast-types-flow": "0.0.7",
"babel": "5.8.38",
"babel-eslint": "6.1.2",
"eslint": "3.5.0",
Expand Down
Loading