-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE Updates deps and removes the optional dependencies. Package users are now expected to add those deps if they use those plugins.
- Loading branch information
Marc MacLeod
committed
Dec 13, 2018
1 parent
c033133
commit ee266c1
Showing
5 changed files
with
1,465 additions
and
824 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
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,15 @@ | ||
// This config is used by `sl-scripts build` and `sl-scripts build.docs` | ||
{ | ||
"extends": "./tsconfig.json", | ||
|
||
// NOTE: must only include one element, otherwise build process into dist folder ends up with incorrect structure | ||
"include": ["src"], | ||
|
||
// Ignore dev folders like __tests__ and __stories__ when building for distribution | ||
"exclude": ["**/__*__/**"], | ||
|
||
"compilerOptions": { | ||
"outDir": "dist", | ||
"moduleResolution": "node" | ||
} | ||
} |
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,7 +1,6 @@ | ||
{ | ||
"extends": "./node_modules/@stoplight/scripts/tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"outDir": "dist" | ||
} | ||
"extends": "@stoplight/scripts/tsconfig.json", | ||
|
||
// target all ts files | ||
"include": ["src"] | ||
} |
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/@stoplight/scripts/tslint.json"] | ||
"extends": ["@stoplight/scripts/tslint.json"] | ||
} |
Oops, something went wrong.