Skip to content

Commit b5a3b85

Browse files
committed
Merge branch 'main' into public
2 parents 210efe8 + 25c9ff7 commit b5a3b85

File tree

10 files changed

+72
-11
lines changed

10 files changed

+72
-11
lines changed

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ closeComment: false
1212
pulls:
1313
daysUntilStale: 3
1414
daysUntilClose: 1
15-
staleLabel: 'stale'
15+
staleLabel: stale
1616
markComment: >
1717
This pull request has been automatically marked as stale because it has not had
1818
recent activity. It will be closed if no further activity occurs.

.github/workflows/makenew.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ jobs:
8585
timeout-minutes: 30
8686
needs: bootstrap
8787
steps:
88+
- name: Wait for repo to exist
89+
run: sleep 10
8890
- name: Cut version
8991
run: gh workflow run version.yml --repo $REPO --raw-field version=patch
9092
env:

.github/workflows/semantic-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
branches:
99
- '**'
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref_name }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
semantic:
1317
name: Determine version

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,59 @@ dist
161161
.yarn/build-state.yml
162162
.yarn/install-state.gz
163163
.pnp.*
164+
165+
# Windows
166+
167+
# Windows thumbnail cache files
168+
Thumbs.db
169+
Thumbs.db:encryptable
170+
ehthumbs.db
171+
ehthumbs_vista.db
172+
173+
# Dump file
174+
*.stackdump
175+
176+
# Folder config file
177+
[Dd]esktop.ini
178+
179+
# Recycle Bin used on file shares
180+
$RECYCLE.BIN/
181+
182+
# Windows Installer files
183+
*.cab
184+
*.msi
185+
*.msix
186+
*.msm
187+
*.msp
188+
189+
# Windows shortcuts
190+
*.lnk
191+
192+
# macOS
193+
194+
# General
195+
.DS_Store
196+
.AppleDouble
197+
.LSOverride
198+
199+
# Icon must end with two \r
200+
Icon
201+
202+
# Thumbnails
203+
._*
204+
205+
# Files that might appear in the root of a volume
206+
.DocumentRevisions-V100
207+
.fseventsd
208+
.Spotlight-V100
209+
.TemporaryItems
210+
.Trashes
211+
.VolumeIcon.icns
212+
.com.apple.timemachine.donotpresent
213+
214+
# Directories potentially created on remote AFP share
215+
.AppleDB
216+
.AppleDesktop
217+
Network Trash Folder
218+
Temporary Items
219+
.apdisk

.prettierrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"semi": false,
33
"singleQuote": true,
44
"jsxSingleQuote": true,
5-
"trailingComma": "none",
65
"endOfLine": "lf"
76
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ $ npm install
152152

153153
#### Automatic
154154

155-
New versions are released automatically with [semantic-release].
155+
New versions are released automatically with [semantic-release]
156156
as long as commits follow the [Angular Commit Message Conventions].
157157

158158
[Angular Commit Message Conventions]: https://semantic-release.gitbook.io/semantic-release/#commit-message-format

ava.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export default () => {
44
files: ['**/*.test.ts', '!package/**/*'],
55
environmentVariables: {
66
// UPSTREAM: https://nodejs.org/docs/latest-v18.x/api/esm.html#loaders
7-
NODE_NO_WARNINGS: '1'
7+
NODE_NO_WARNINGS: '1',
88
},
99
extensions: {
10-
ts: 'module'
10+
ts: 'module',
1111
},
12-
nodeArguments: ['--loader=tsx']
12+
nodeArguments: ['--loader=tsx'],
1313
}
1414
}

examples/todo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export const builder: Builder = {
1414
x: {
1515
type: 'string',
1616
default: 'TODO',
17-
describe: 'TODO'
18-
}
17+
describe: 'TODO',
18+
},
1919
}
2020

2121
export const handler: Handler<Options> = async ({ x, logger }) => {

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@seamapi/makenew-tsmodule",
3-
"version": "1.1.2",
3+
"version": "1.1.5",
44
"description": "Package skeleton for a TypeScript module.",
55
"type": "module",
66
"main": "index.js",

0 commit comments

Comments
 (0)