generated from eclass/template-semantic-release-plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add create deploy to new release
Fix set repository url of commits
- Loading branch information
Showing
11 changed files
with
166 additions
and
43 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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,10 +1,16 @@ | ||
import SemanticRelease from 'semantic-release' | ||
import { Context as SemanticReleaseContext } from 'semantic-release' | ||
import { Config as SemanticReleaseConfig } from 'semantic-release' | ||
|
||
export interface Context extends SemanticRelease.Context { | ||
export interface Context extends SemanticReleaseContext { | ||
commits?: SemanticRelease.Commit[] | ||
} | ||
|
||
export interface Config extends SemanticRelease.Config { | ||
// Set url of repo tags. Ex: https://gitlab.com/my-org/my-repo/-/tags | ||
export interface Config extends SemanticReleaseConfig { | ||
// Set url of repository tags. Ex: https://gitlab.com/my-org/my-repo | ||
repositoryUrl?: string | ||
// Set url of repository tags. Ex: https://gitlab.com/my-org/my-repo/-/tags | ||
tagsUrl?: string | ||
environment?: string | ||
deployName?: string | ||
deployUrl?: string | ||
} |
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,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"lib": [ "es2017", "es7" ], | ||
"allowJs": true, | ||
"checkJs": true, | ||
"downlevelIteration": true, | ||
"outDir": "build", | ||
"skipLibCheck": true | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"coverage" | ||
] | ||
} |