@shakerquiz/utilities 4.0.32 → 4.0.33

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.
@@ -1,4 +1,4 @@
1
- name: Update package (aquamarine)
1
+ name: Publish package (aquamarine)
2
2
 
3
3
  on:
4
4
  pull_request:
@@ -24,9 +24,8 @@ jobs:
24
24
  ref: aquamarine
25
25
  - uses: actions/setup-node@v6
26
26
  with:
27
- node-version: 24
27
+ node-version: latest
28
28
  - uses: oven-sh/setup-bun@v2
29
- - run: npm install -g npm@latest
30
29
  - run: git config user.name "github-actions[bot]"
31
30
  - run: git config user.email "github-actions[bot]@users.noreply.github.com"
32
31
  - run: npm version patch
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "4.0.32",
4
+ "version": "4.0.33",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -2,6 +2,7 @@ export const RegistrationLineups = Object.freeze(
2
2
  /** @type {const} */ ([
3
3
  'Main',
4
4
  'Reserve',
5
+ 'Unspecifed',
5
6
  ]),
6
7
  )
7
8
 
@@ -17,4 +18,5 @@ export const RegistrationLineup = Object.freeze(
17
18
  export const RegistrationLineupEmoji = Object.freeze({
18
19
  'Main': '🟢',
19
20
  'Reserve': '🟡',
21
+ 'Unspecifed': '⚫️',
20
22
  })