Skip to content
This repository has been archived by the owner on Mar 24, 2020. It is now read-only.

Commit

Permalink
chore(release): 1.0.10 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Nov 18, 2019
1 parent 092f07f commit 2363558
Show file tree
Hide file tree
Showing 23 changed files with 149 additions and 23 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## [1.0.10](https://github.com/ridedott/semantic-release-action/compare/v1.0.9...v1.0.10) (2019-11-18)

### Chores

- update dist for action master version
([092f07f](https://github.com/ridedott/semantic-release-action/commit/092f07f80a929d7367c457b7674093c545b135c1))
- **deps:** bump semantic-release from 15.13.30 to 15.13.31
([58ca6fd](https://github.com/ridedott/semantic-release-action/commit/58ca6fd870735497528f285d294071a4b7d40867))
- **deps-dev:** bump @types/node from 12.12.7 to 12.12.8
([07cd9a6](https://github.com/ridedott/semantic-release-action/commit/07cd9a678e646a75411e20a7ffc61dd7191c6d23))
- **deps-dev:** bump cspell from 4.0.33 to 4.0.34
([994ee87](https://github.com/ridedott/semantic-release-action/commit/994ee874b4153066e9c20c5343c0e706c8fa4f53))
- **deps-dev:** bump husky from 3.0.9 to 3.1.0
([3521e02](https://github.com/ridedott/semantic-release-action/commit/3521e028e75012ec997652bc13f5ff8c146971f4))

### Continuous Integration

- **task:** add install plugins tasks
([f12e8cc](https://github.com/ridedott/semantic-release-action/commit/f12e8ccdad8a055bb94debbf44ac222288b541ce))

## [1.0.9](https://github.com/ridedott/semantic-release-action/compare/v1.0.8...v1.0.9) (2019-11-15)

### Chores
Expand Down
6 changes: 6 additions & 0 deletions dist/config/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { parserOptions } from './parserOptions';
import { plugins } from './plugins';
import { releaseRules } from './releaseRules';
import { transform } from './transform';
export { parserOptions, plugins, releaseRules, transform };
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/config/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/config/parserOptions.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export declare const parserOptions: {
mergeCorrespondence: string[];
mergePattern: RegExp;
};
//# sourceMappingURL=parserOptions.d.ts.map
1 change: 1 addition & 0 deletions dist/config/parserOptions.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/config/plugins.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { PluginSpec } from 'semantic-release';
export declare const plugins: PluginSpec[];
//# sourceMappingURL=plugins.d.ts.map
1 change: 1 addition & 0 deletions dist/config/plugins.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/config/releaseRules.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export declare const releaseRules: {
release: string;
type: string;
}[];
//# sourceMappingURL=releaseRules.d.ts.map
1 change: 1 addition & 0 deletions dist/config/releaseRules.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions dist/config/transform.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* This transform function is a modified copy of
* Angular preset for https://github.com/semantic-release/commit-analyzer
* to support release notes and changelog entries generation for all types of commit messages:
* https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular
* Ignored in .eslintignore to speedup development of action. Same reasoning for usage of @ts-ignore annotations
*/
export declare const transform: (commit: any, context: any) => any;
//# sourceMappingURL=transform.d.ts.map
1 change: 1 addition & 0 deletions dist/config/transform.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/index.js.cache
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/index.js.cache.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions dist/optionsHandlers/handlers.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export declare enum Flags {
branch = "BRANCH",
dryRun = "DRY_RUN",
plugins = "PLUGINS",
scripts = "SCRIPTS",
debug = "DEBUG"
}
export declare const handleBranchFlag: () => {} | {
branch: string;
};
export declare const handleDryRunFlag: () => {
dryRun: boolean;
};
export declare const handleDebugFlag: () => boolean;
//# sourceMappingURL=handlers.d.ts.map
1 change: 1 addition & 0 deletions dist/optionsHandlers/handlers.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/optionsHandlers/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* Options Handler Exports
*/
export * from './handlers';
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/optionsHandlers/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/tasks.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Result } from 'semantic-release';
export declare enum Commands {
RemoveNpmrc = "removeNpmrc",
PreInstallPlugins = "preInstallPlugins"
}
export declare const reportResults: (result: Result) => Promise<void>;
export declare const runTask: (task: Commands) => Promise<void>;
1 change: 1 addition & 0 deletions dist/tasks.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

83 changes: 62 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@
"test:watch": "jest --watch --verbose false",
"types": "tsc --noEmit"
},
"version": "1.0.9"
"version": "1.0.10"
}

0 comments on commit 2363558

Please sign in to comment.