@aidc-toolkit/utility 0.0.1 → 0.9.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.
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ **To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1. Go to '...'
16
+ 2. Click on '....'
17
+ 3. Scroll down to '....'
18
+ 4. See error
19
+
20
+ **Expected behavior**
21
+ A clear and concise description of what you expected to happen.
22
+
23
+ **Screenshots**
24
+ If applicable, add screenshots to help explain your problem.
25
+
26
+ **Platform**
27
+ - OS: [e.g. Windows, iOS]
28
+ - Browser [e.g. chrome, safari]
29
+ - Browser Version [e.g. 22]
30
+
31
+ **Additional context**
32
+ Add any other context about the problem here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -16,6 +16,12 @@ jobs:
16
16
  with:
17
17
  node-version: 22
18
18
  - run: npm ci
19
+ # This is necessary to work around platform-specific optional dependencies bug (https://github.com/npm/cli/issues/4828).
20
+ # - run: npm i @rollup/rollup-linux-x64-gnu
21
+ # "vitest run" fails with:
22
+ # Error: failed to resolve "extends":"@aidc-toolkit/dev/tsconfig.json" in /home/runner/work/utility/utility/tsconfig.json
23
+ # Caused by: Error: Cannot find module '@aidc-toolkit/dev/tsconfig.json/tsconfig.json'
24
+ # - run: npm test
19
25
 
20
26
  publish-npm:
21
27
  needs: build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aidc-toolkit/utility",
3
- "version": "0.0.1",
3
+ "version": "0.9.0",
4
4
  "description": "Foundational utilities for AIDC Toolkit",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,7 +24,7 @@
24
24
  "test": "vitest run"
25
25
  },
26
26
  "devDependencies": {
27
- "@aidc-toolkit/dev": "^0.0.1",
27
+ "@aidc-toolkit/dev": "^0.9.0",
28
28
  "@eslint/js": "^9.10.0",
29
29
  "@stylistic/eslint-plugin": "^2.7.2",
30
30
  "eslint-config-love": "^64.0.0",
@@ -36,7 +36,7 @@
36
36
  "vitest": "^2.0.5"
37
37
  },
38
38
  "dependencies": {
39
- "@aidc-toolkit/core": "^0.0.1",
39
+ "@aidc-toolkit/core": "^0.9.0",
40
40
  "i18next": "^23.14.0"
41
41
  }
42
42
  }