Skip to content

Commit a34e708

Browse files
committed
Merge branch 'main' into public
2 parents 6100954 + f89ea2f commit a34e708

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/semantic-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ run-name: Semantic Release from ${{ github.ref_name }}
66
on:
77
push:
88
branches:
9-
- '**'
9+
- 'main'
10+
- 'next'
11+
- 'next-major'
12+
- 'beta'
13+
- 'alpha'
14+
- '*.x'
1015

1116
concurrency:
1217
group: ${{ github.workflow }}-${{ github.ref_name }}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@seamapi/makenew-tsmodule",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"description": "Package skeleton for a TypeScript module.",
55
"type": "module",
66
"main": "index.js",
@@ -59,8 +59,8 @@
5959
"postversion": "git push --follow-tags",
6060
"example": "tsx examples",
6161
"example:inspect": "tsx --inspect examples",
62-
"format": "eslint --ignore-path .gitignore --fix .",
63-
"preformat": "prettier --write --ignore-path .gitignore .",
62+
"format": "prettier --write --ignore-path .gitignore .",
63+
"postformat": "eslint --ignore-path .gitignore --fix .",
6464
"report": "c8 report"
6565
},
6666
"engines": {

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
},
1212
"files": ["src/index.ts"],
1313
"include": ["src/**/*"],
14-
"exclude": ["**/*.test.ts", "tsup.config.ts"]
14+
"exclude": ["**/*.test.ts"]
1515
}

0 commit comments

Comments
 (0)