@halospv3/hce.shared-config 2.4.0 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/cjs/dotnet/MSBuildProject.cjs +1 -1
- package/cjs/eslintConfig.cjs +0 -1
- package/cjs/eslintConfig.cjs.map +1 -1
- package/cjs/eslintConfig.d.ts.map +1 -1
- package/cjs/semantic-release__commit-analyzer.d.cjs +2 -0
- package/cjs/semantic-release__commit-analyzer.d.cjs.map +1 -0
- package/cjs/semanticReleaseConfig.cjs +2 -2
- package/cjs/semanticReleaseConfig.cjs.map +1 -1
- package/cjs/semanticReleaseConfig.d.ts.map +1 -1
- package/cjs/semanticReleaseConfigDotnet.cjs +1 -1
- package/package.json +5 -5
- package/src/eslintConfig.ts +0 -1
- package/src/semantic-release__commit-analyzer.d.ts +44 -0
- package/src/semanticReleaseConfig.ts +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [2.4.2](https://github.com/halospv3/hce.shared/compare/v2.4.1...v2.4.2) (2024-05-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix adding npm plugin to private semantic-release config ([fe2542b](https://github.com/halospv3/hce.shared/commit/fe2542b9e3d1dc3b3d00351f3dbef840b1f99486))
|
|
7
|
+
|
|
8
|
+
## [2.4.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1) (2024-05-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* :ambulance: bump braces to 3.0.3 ([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
|
|
14
|
+
* **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits ([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)), closes [#402](https://github.com/halospv3/hce.shared/issues/402)
|
|
15
|
+
|
|
16
|
+
## [2.4.1-develop.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1-develop.1) (2024-05-31)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* :ambulance: bump braces to 3.0.3 ([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
|
|
22
|
+
* **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits ([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)), closes [#402](https://github.com/halospv3/hce.shared/issues/402)
|
|
23
|
+
|
|
1
24
|
## [2.2.4](https://github.com/halospv3/hce.shared/compare/v2.2.3...v2.2.4) (2024-04-06)
|
|
2
25
|
|
|
3
26
|
## [2.2.3](https://github.com/halospv3/hce.shared/compare/v2.2.2...v2.2.3) (2024-03-29)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
4
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
|
-
function _defineProperty(
|
|
5
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
6
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
7
7
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
8
|
const node_child_process = require('node:child_process');
|
package/cjs/eslintConfig.cjs
CHANGED
|
@@ -15,7 +15,6 @@ const eslint__default = /*#__PURE__*/_interopDefault(eslint);
|
|
|
15
15
|
// CJS compatibility; it started transpiling to a top-level await after upgrading from packemon 4.0.1 to 4.1.0
|
|
16
16
|
const require$1 = node_module.createRequire(typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : _documentCurrentScript && _documentCurrentScript.src || new URL('eslintConfig.cjs', document.baseURI).href);
|
|
17
17
|
const globals = require$1("globals");
|
|
18
|
-
console.log(globals);
|
|
19
18
|
// https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config
|
|
20
19
|
// https://www.google.com/search?q=javascript+recurse+through+object+and+remove+undefined+properties
|
|
21
20
|
|
package/cjs/eslintConfig.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslintConfig.cjs","sources":["../src/eslintConfig.ts"],"sourcesContent":null,"names":["require","createRequire","tseslint","jsonc","eslint"],"mappings":";;;;;;;;;;;;;;AAKA;AACA,MAAMA,SAAO,GAAGC,yBAAa,CAAC,qMAAe,CAAC,CAAC;AAC/C,MAAM,OAAO,GAAGD,SAAO,CAAC,SAAS,CAAC,CAAC;AACnC
|
|
1
|
+
{"version":3,"file":"eslintConfig.cjs","sources":["../src/eslintConfig.ts"],"sourcesContent":null,"names":["require","createRequire","tseslint","jsonc","eslint"],"mappings":";;;;;;;;;;;;;;AAKA;AACA,MAAMA,SAAO,GAAGC,yBAAa,CAAC,qMAAe,CAAC,CAAC;AAC/C,MAAM,OAAO,GAAGD,SAAO,CAAC,SAAS,CAAC,CAAC;AACnC;AACA;AACA;AACA,MAAM,aAAa,GAAG;AACtB,EAAE,IAAI,EAAE,gBAAgB;AACxB,EAAE,OAAO,EAAE,CAAC,aAAa,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,sBAAsB,CAAC;AAC3J,CAAC,CAAC;AACF,qBAAeE,yBAAQ,CAAC,MAAM,CAAC;AAC/B,EAAE,IAAI,EAAE,+EAA+E;AACvF,EAAE,OAAO,EAAEC,sBAAK,CAAC,OAAO,CAAC,4BAA4B,CAAC;AACtD,EAAE,KAAK,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC;AAChC,EAAE,OAAO,EAAE,aAAa,CAAC,OAAO;AAChC,CAAC,EAAE;AACH,EAAE,IAAI,EAAE,gFAAgF;AACxF,EAAE,OAAO,EAAEA,sBAAK,CAAC,OAAO,CAAC,6BAA6B,CAAC;AACvD,EAAE,KAAK,EAAE,CAAC,SAAS,EAAE,YAAY,CAAC;AAClC,EAAE,OAAO,EAAE,aAAa,CAAC,OAAO;AAChC,CAAC,EAAE;AACH,EAAE,IAAI,EAAE,gFAAgF;AACxF,EAAE,OAAO,EAAEA,sBAAK,CAAC,OAAO,CAAC,6BAA6B,CAAC;AACvD,EAAE,KAAK,EAAE,CAAC,SAAS,EAAE,YAAY,CAAC;AAClC,EAAE,OAAO,EAAE,aAAa,CAAC,OAAO;AAChC,CAAC,EAAE;AACH,EAAE,IAAI,EAAE,MAAM;AACd,EAAE,OAAO,EAAE,CAACC,uBAAM,CAAC,OAAO,CAAC,WAAW,EAAE,GAAGF,yBAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,GAAGA,yBAAQ,CAAC,OAAO,CAAC,SAAS,CAAC;AAClG,EAAE,KAAK,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,CAAC;AAC/E,EAAE,OAAO,EAAE,aAAa,CAAC,OAAO;AAChC,EAAE,eAAe,EAAE;AACnB,IAAI,aAAa,EAAE;AACnB,MAAM,OAAO,EAAE,IAAI;AACnB;AACA,MAAM,8BAA8B,EAAE;AACtC,QAAQ,2BAA2B,EAAE,CAAC,QAAQ,CAAC;AAC/C,QAAQ,+DAA+D,EAAE,EAAE;AAC3E,OAAO;AACP,KAAK;AACL,IAAI,OAAO,EAAE,OAAO,CAAC,IAAI;AACzB,GAAG;AACH,CAAC,EAAE,aAAa,CAAC;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslintConfig.d.ts","sourceRoot":"","sources":["../src/eslintConfig.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,0BAA0B,CAAC;;
|
|
1
|
+
{"version":3,"file":"eslintConfig.d.ts","sourceRoot":"","sources":["../src/eslintConfig.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,0BAA0B,CAAC;;AA2BzD,wBA2DE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"semantic-release__commit-analyzer.d.cjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;"}
|
|
@@ -10,14 +10,14 @@ const baseConfig = {
|
|
|
10
10
|
channel: 'develop',
|
|
11
11
|
prerelease: true
|
|
12
12
|
}],
|
|
13
|
-
plugins: ["@semantic-release/commit-analyzer", "semantic-release-export-data", "@semantic-release/release-notes-generator", "@semantic-release/changelog", ["@semantic-release/git", setupGitPluginSpec.DefaultOptions],
|
|
13
|
+
plugins: [["@semantic-release/commit-analyzer", {}], ["semantic-release-export-data", {}], ["@semantic-release/release-notes-generator", {}], ["@semantic-release/changelog", {}], ["@semantic-release/git", setupGitPluginSpec.DefaultOptions],
|
|
14
14
|
// Arbitrary shell commands - https://github.com/semantic-release/exec
|
|
15
15
|
// hint: set 'prepareCmd' to`dotnet publish`.
|
|
16
16
|
// Because this is sorted after @semantic-release / git, the new Git tag will
|
|
17
17
|
// be visible to dotnet(and GitVersion).Dotnet artifacts will be
|
|
18
18
|
// versioned accordingly.
|
|
19
19
|
// Plugins' Steps: https://github.com/semantic-release/semantic-release/blob/master/docs/extending/plugins-list.md
|
|
20
|
-
"@semantic-release/exec", ["@semantic-release/github", {
|
|
20
|
+
["@semantic-release/exec", {}], ["@semantic-release/github", {
|
|
21
21
|
assets: [{
|
|
22
22
|
path: './publish/*'
|
|
23
23
|
}]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semanticReleaseConfig.cjs","sources":["../src/semanticReleaseConfig.ts"],"sourcesContent":null,"names":["DefaultOptions"],"mappings":";;;;AACY,MAAC,cAAc,GAAG,CAAC,mCAAmC,EAAE,2CAA2C,EAAE,uBAAuB,EAAE,0BAA0B,EAAE;AAC1J,MAAC,UAAU,GAAG;AAC1B;AACA,EAAE,MAAM,EAAE,qBAAqB;AAC/B,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE;AACrB,IAAI,IAAI,EAAE,SAAS;AACnB,IAAI,OAAO,EAAE,SAAS;AACtB,IAAI,UAAU,EAAE,IAAI;AACpB,GAAG,CAAC;AACJ,EAAE,OAAO,EAAE,CAAC,mCAAmC,EAAE,8BAA8B,EAAE,2CAA2C,EAAE,6BAA6B,EAAE,CAAC,uBAAuB,EAAEA,iCAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"semanticReleaseConfig.cjs","sources":["../src/semanticReleaseConfig.ts"],"sourcesContent":null,"names":["DefaultOptions"],"mappings":";;;;AACY,MAAC,cAAc,GAAG,CAAC,mCAAmC,EAAE,2CAA2C,EAAE,uBAAuB,EAAE,0BAA0B,EAAE;AAC1J,MAAC,UAAU,GAAG;AAC1B;AACA,EAAE,MAAM,EAAE,qBAAqB;AAC/B,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE;AACrB,IAAI,IAAI,EAAE,SAAS;AACnB,IAAI,OAAO,EAAE,SAAS;AACtB,IAAI,UAAU,EAAE,IAAI;AACpB,GAAG,CAAC;AACJ,EAAE,OAAO,EAAE,CAAC,CAAC,mCAAmC,EAAE,EAAE,CAAC,EAAE,CAAC,8BAA8B,EAAE,EAAE,CAAC,EAAE,CAAC,2CAA2C,EAAE,EAAE,CAAC,EAAE,CAAC,6BAA6B,EAAE,EAAE,CAAC,EAAE,CAAC,uBAAuB,EAAEA,iCAAc,CAAC;AAC9N;AACA;AACA;AACA;AACA;AACA;AACA,EAAE,CAAC,wBAAwB,EAAE,EAAE,CAAC,EAAE,CAAC,0BAA0B,EAAE;AAC/D,IAAI,MAAM,EAAE,CAAC;AACb,MAAM,IAAI,EAAE,aAAa;AACzB,KAAK,CAAC;AACN,GAAG,CAAC,CAAC;AACL,EAAE;AACF;AACA;AACA;AACA;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semanticReleaseConfig.d.ts","sourceRoot":"","sources":["../src/semanticReleaseConfig.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAK5D,eAAO,MAAM,cAAc,EAAE,SAAS,UAAU,EAK/C,CAAC;AAEF,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"semanticReleaseConfig.d.ts","sourceRoot":"","sources":["../src/semanticReleaseConfig.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAK5D,eAAO,MAAM,cAAc,EAAE,SAAS,UAAU,EAK/C,CAAC;AAEF,eAAO,MAAM,UAAU,SAmCX,CAAC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
4
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
|
-
function _defineProperty(
|
|
5
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
6
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
7
7
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
8
|
Object.defineProperty(exports, '__esModule', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halospv3/hce.shared-config",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"description": "Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"halo",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@types/semantic-release": "^20.0.6",
|
|
69
69
|
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
70
70
|
"@typescript-eslint/parser": "^7.10.0",
|
|
71
|
-
"conventional-changelog-conventionalcommits": "^
|
|
71
|
+
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
72
72
|
"debug": "^4.3.4",
|
|
73
73
|
"eslint-plugin-jsonc": "^2.15.1",
|
|
74
74
|
"globals": "^15.3.0",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"typescript-eslint": "^7.10.0"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@babel/cli": "^7.24.
|
|
84
|
-
"@babel/core": "^7.24.
|
|
85
|
-
"@babel/eslint-parser": "^7.24.
|
|
83
|
+
"@babel/cli": "^7.24.6",
|
|
84
|
+
"@babel/core": "^7.24.6",
|
|
85
|
+
"@babel/eslint-parser": "^7.24.6",
|
|
86
86
|
"@eslint/eslintrc": "^3.1.0",
|
|
87
87
|
"@tsconfig/node-lts": "^20.1.2",
|
|
88
88
|
"@types/babel__core": "^7.20.5",
|
package/src/eslintConfig.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { createRequire } from "module";
|
|
|
7
7
|
// CJS compatibility; it started transpiling to a top-level await after upgrading from packemon 4.0.1 to 4.1.0
|
|
8
8
|
const require = createRequire(import.meta.url);
|
|
9
9
|
const globals = require("globals") as typeof import("globals", {with: {type: "json"}});
|
|
10
|
-
console.log(globals)
|
|
11
10
|
// https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config
|
|
12
11
|
// https://www.google.com/search?q=javascript+recurse+through+object+and+remove+undefined+properties
|
|
13
12
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare module '@semantic-release/commit-analyzer' {
|
|
2
|
+
|
|
3
|
+
interface RuleObject {
|
|
4
|
+
type?: string,
|
|
5
|
+
scope?: string,
|
|
6
|
+
release: string
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
type AnyRecord = Record<keyof unknown, unknown>;
|
|
10
|
+
|
|
11
|
+
export interface CommitAnalyzerConfig {
|
|
12
|
+
preset?: string,
|
|
13
|
+
config?: string,
|
|
14
|
+
parserOpts?: AnyRecord,
|
|
15
|
+
releaseRules?: string | RuleObject[],
|
|
16
|
+
presetConfig?: AnyRecord
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Determine the type of release to create based on a list of commits.
|
|
21
|
+
*
|
|
22
|
+
* @param {Object} pluginConfig The plugin configuration.
|
|
23
|
+
* @param {String} pluginConfig.preset conventional-changelog preset ('angular', 'atom', 'codemirror', 'ember', 'eslint', 'express', 'jquery', 'jscs', 'jshint')
|
|
24
|
+
* @param {String} pluginConfig.config Requireable npm package with a custom conventional-changelog preset
|
|
25
|
+
* @param {String|Array} pluginConfig.releaseRules A `String` to load an external module or an `Array` of rules.
|
|
26
|
+
* @param {Object} pluginConfig.parserOpts Additional `conventional-changelog-parser` options that will overwrite ones loaded by `preset` or `config`.
|
|
27
|
+
* @param {Object} context The semantic-release context.
|
|
28
|
+
* @param {Array<Object>} context.commits The commits to analyze.
|
|
29
|
+
* @param {String} context.cwd The current working directory.
|
|
30
|
+
*
|
|
31
|
+
* @returns {Promise<String|null>} the type of release to create based on the list of commits or `null` if no release has to be done.
|
|
32
|
+
*
|
|
33
|
+
* @see 'file://./../node_modules/@semantic-release/commit-analyzer/index.js'
|
|
34
|
+
*/
|
|
35
|
+
export function analyzeCommits(pluginConfig: {
|
|
36
|
+
preset: string;
|
|
37
|
+
config: string;
|
|
38
|
+
releaseRules: string | AnyRecord[];
|
|
39
|
+
parserOpts: unknown;
|
|
40
|
+
}, context: {
|
|
41
|
+
commits: unknown[];
|
|
42
|
+
cwd: string;
|
|
43
|
+
}): Promise<string | null>;
|
|
44
|
+
}
|
|
@@ -22,10 +22,10 @@ export const baseConfig = {
|
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
24
|
plugins: [
|
|
25
|
-
"@semantic-release/commit-analyzer",
|
|
26
|
-
"semantic-release-export-data",
|
|
27
|
-
"@semantic-release/release-notes-generator",
|
|
28
|
-
"@semantic-release/changelog",
|
|
25
|
+
["@semantic-release/commit-analyzer", {}],
|
|
26
|
+
["semantic-release-export-data", {}],
|
|
27
|
+
["@semantic-release/release-notes-generator", {}],
|
|
28
|
+
["@semantic-release/changelog", {}],
|
|
29
29
|
[
|
|
30
30
|
"@semantic-release/git",
|
|
31
31
|
DefaultOptions
|
|
@@ -36,9 +36,8 @@ export const baseConfig = {
|
|
|
36
36
|
// be visible to dotnet(and GitVersion).Dotnet artifacts will be
|
|
37
37
|
// versioned accordingly.
|
|
38
38
|
// Plugins' Steps: https://github.com/semantic-release/semantic-release/blob/master/docs/extending/plugins-list.md
|
|
39
|
-
"@semantic-release/exec",
|
|
40
|
-
[
|
|
41
|
-
"@semantic-release/github",
|
|
39
|
+
["@semantic-release/exec", {}],
|
|
40
|
+
["@semantic-release/github",
|
|
42
41
|
{
|
|
43
42
|
assets: [{
|
|
44
43
|
path: './publish/*'
|