-
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.
- Loading branch information
1 parent
4577816
commit 1f9d087
Showing
10 changed files
with
2,107 additions
and
1,546 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -66,4 +66,4 @@ typings/ | |
# Serverless directories | ||
.serverless | ||
|
||
/build | ||
/dist |
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,4 @@ | ||
/build | ||
/dist | ||
/node_modules | ||
/coverage | ||
package.json |
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "pipe-now", | ||
"version": "0.0.0-development", | ||
"description": "A pipe function that acts like the pipeline operator proposal.", | ||
"main": "build/index.js", | ||
"types": "build/index.d.ts", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"author": "Gabriel Duarte <[email protected]> (https://www.gabrielduarte.tech/)", | ||
"license": "MIT", | ||
"homepage": "https://github.com/GabrielDuarteM/pipe-now", | ||
|
@@ -20,7 +20,7 @@ | |
"helpers" | ||
], | ||
"files": [ | ||
"build" | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
|
@@ -37,15 +37,12 @@ | |
"ci": "gd-scripts ci", | ||
"release": "semantic-release" | ||
}, | ||
"resolutions": { | ||
"babel-core": "^7.0.0-bridge.0" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^23.3.1", | ||
"@types/node": "^10.9.2", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-prettier": "^2.6.2", | ||
"gd-scripts": "^1.3.0", | ||
"gd-scripts": "^4.0.0", | ||
"prettier": "^1.14.2", | ||
"semantic-release": "^15.9.8" | ||
} | ||
|
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 +1 @@ | ||
module.exports = require("gd-scripts/semver") | ||
module.exports = require('gd-scripts/semver') |
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,3 @@ | ||
{ | ||
"extends": ["config:base"], | ||
"rangeStrategy": "bump" | ||
"extends": ["config:base"] | ||
} |
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
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,3 +1,3 @@ | ||
{ | ||
"extends": "./node_modules/gd-scripts/build/config/tsconfig.json" | ||
"extends": "./node_modules/gd-scripts/typescript.json" | ||
} |
Oops, something went wrong.