@shakerquiz/utilities 2.0.0 → 2.0.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.
@@ -0,0 +1,32 @@
1
+ name: Publish antiquewhite
2
+
3
+ on:
4
+ pull_request:
5
+ types: [ closed ]
6
+ branches:
7
+ - antiquewhite
8
+
9
+ permissions:
10
+ id-token: write
11
+ contents: write
12
+
13
+ jobs:
14
+ publish:
15
+ runs-on: ubuntu-latest
16
+ if: github.event.pull_request.merged == true
17
+ steps:
18
+ - uses: actions/checkout@v5
19
+ with:
20
+ fetch-depth: 0
21
+ - uses: actions/setup-node@v6
22
+ with:
23
+ node-version: 24
24
+ - uses: oven-sh/setup-bun@v2
25
+ - run: npm install -g npm@latest
26
+ - run: git config user.name "github-actions[bot]"
27
+ - run: git config user.email "github-actions[bot]@users.noreply.github.com"
28
+ - run: npm version patch
29
+ - run: npm ci
30
+ - run: npm publish --tag antiquewhite
31
+ - run: git commit -am "Commit artifacts" || true
32
+ - run: git push --follow-tags
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "2.0.0",
4
+ "version": "2.0.2",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/shaker-quiz/utilities.git"
10
+ },
7
11
  "scripts": {
8
12
  "type": "tsc --declaration --emitdeclarationonly --allowjs"
9
13
  },
@@ -1,4 +1,4 @@
1
1
  export var VenueStatuses = /** @type {const} */ ([
2
- 'ACTIVE',
3
- 'ARCHIVE',
2
+ 'Active',
3
+ 'Archive',
4
4
  ])