@frsource/semantic-release-config 1.1.0 → 1.3.0
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/README.md +2 -2
- package/index.d.mts +2 -0
- package/{index.cjs → index.mjs} +1 -1
- package/package.json +4 -4
- package/index.d.cts +0 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Semantic Release configuration files used across the FRSOURCE organization.
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```js
|
|
8
|
-
//
|
|
8
|
+
// .releaserc.mjs
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
export { default } from '@frsource/semantic-release-config';
|
|
11
11
|
```
|
package/index.d.mts
ADDED
package/{index.cjs → index.mjs}
RENAMED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frsource/semantic-release-config",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"main": "index.
|
|
5
|
-
"types": "index.d.
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"main": "index.mjs",
|
|
5
|
+
"types": "index.d.mts",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@semantic-release/changelog": "6.0.3",
|
|
8
8
|
"@semantic-release/commit-analyzer": "11.1.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"funding": "https://buymeacoffee.com/frsource",
|
|
46
46
|
"scripts": {
|
|
47
|
-
"build": "tsc index.
|
|
47
|
+
"build": "tsc index.mjs --declaration --emitDeclarationOnly --allowJs --moduleResolution bundler --target esnext",
|
|
48
48
|
"release": "release-it",
|
|
49
49
|
"eslint": "eslint .",
|
|
50
50
|
"prettier": "prettier . --check",
|
package/index.d.cts
DELETED