forked from motdotla/dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix removing unbalanced quotes (motdotla#376)
* upgrade dependencies * fix flow warnings * remove load alias * simplify links to projects that depend on and extend dotenv fixes outdated projects and makes future maintaince easier * retain single leading or trailing quotes, maintain whitespace in quotes * don't publish examples to npm * rm node v9 from travis test matrix EOL 2018-06-30
- Loading branch information
Showing
12 changed files
with
1,054 additions
and
2,341 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -20,4 +20,4 @@ untyped-import | |
untyped-type-import | ||
|
||
[version] | ||
^0.84.0 | ||
^0.92.1 |
This file contains 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,4 +1,5 @@ | ||
.nyc_output/ | ||
examples/ | ||
flow-typed/ | ||
tests/ | ||
.editorconfig | ||
|
This file contains 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 |
---|---|---|
|
@@ -9,7 +9,6 @@ os: | |
node_js: | ||
- "6" | ||
- "8" | ||
- "9" | ||
- "10" | ||
- "11" | ||
|
||
|
This file contains 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
This file contains 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,60 @@ | ||
// flow-typed signature: abdbe43f01cbcc690c733cdb2033ad4f | ||
// flow-typed version: <<STUB>>/decache_v4.5.0/flow_v0.92.1 | ||
|
||
/** | ||
* This is an autogenerated libdef stub for: | ||
* | ||
* 'decache' | ||
* | ||
* Fill this stub out by replacing all the `any` types. | ||
* | ||
* Once filled out, we encourage you to share your work with the | ||
* community by sending a pull request to: | ||
* https://github.com/flowtype/flow-typed | ||
*/ | ||
|
||
declare module 'decache' { | ||
declare module.exports: any; | ||
} | ||
|
||
/** | ||
* We include stubs for each file inside this npm package in case you need to | ||
* require those files directly. Feel free to delete any files that aren't | ||
* needed. | ||
*/ | ||
declare module 'decache/decache' { | ||
declare module.exports: any; | ||
} | ||
|
||
declare module 'decache/lib/mymodule/index' { | ||
declare module.exports: any; | ||
} | ||
|
||
declare module 'decache/lib/othermodule' { | ||
declare module.exports: any; | ||
} | ||
|
||
declare module 'decache/setup' { | ||
declare module.exports: any; | ||
} | ||
|
||
declare module 'decache/test/test' { | ||
declare module.exports: any; | ||
} | ||
|
||
// Filename aliases | ||
declare module 'decache/decache.js' { | ||
declare module.exports: $Exports<'decache/decache'>; | ||
} | ||
declare module 'decache/lib/mymodule/index.js' { | ||
declare module.exports: $Exports<'decache/lib/mymodule/index'>; | ||
} | ||
declare module 'decache/lib/othermodule.js' { | ||
declare module.exports: $Exports<'decache/lib/othermodule'>; | ||
} | ||
declare module 'decache/setup.js' { | ||
declare module.exports: $Exports<'decache/setup'>; | ||
} | ||
declare module 'decache/test/test.js' { | ||
declare module.exports: $Exports<'decache/test/test'>; | ||
} |
This file contains 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
This file contains 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.