@aidc-toolkit/dev 0.9.11-beta → 0.9.12-beta
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.
- package/README.md +6 -6
- package/config/release.json +6 -6
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +11 -10
- package/src/eslint-config-template.ts +1 -1
- /package/{eslint.config.js → eslint.config.ts} +0 -0
package/README.md
CHANGED
|
@@ -37,18 +37,18 @@ Options specific to the package may override or supplement core options if requi
|
|
|
37
37
|
All AIDC Toolkit packages are expected to follow a common coding style (enforced by [ESLint](https://eslint.org/)),
|
|
38
38
|
which implies that they all have the same ESLint configuration. This is supported by the [`eslint-config-template.ts`
|
|
39
39
|
file](src/eslint-config-template.ts) in this package. Core changes should be managed in that file, with other packages
|
|
40
|
-
declaring their own `eslint.config.
|
|
40
|
+
declaring their own `eslint.config.ts` file as follows:
|
|
41
41
|
|
|
42
|
-
```
|
|
42
|
+
```typescript
|
|
43
43
|
import { esLintConfigAIDCToolkit } from "@aidc-toolkit/dev";
|
|
44
44
|
|
|
45
45
|
export default esLintConfigAIDCToolkit;
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
Rules specific to the package may override or supplement core rules if required. If so, the `eslint.config.
|
|
48
|
+
Rules specific to the package may override or supplement core rules if required. If so, the `eslint.config.ts` file
|
|
49
49
|
should be declared as follows:
|
|
50
50
|
|
|
51
|
-
```
|
|
51
|
+
```typescript
|
|
52
52
|
import tseslint from "typescript-eslint";
|
|
53
53
|
import { esLintConfigAIDCToolkit } from "@aidc-toolkit/dev";
|
|
54
54
|
// Additional imports here as required.
|
|
@@ -61,5 +61,5 @@ export default tseslint.config(
|
|
|
61
61
|
);
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
ESLint requires the installation of the `eslint`
|
|
65
|
-
be required if overriding or supplementing the core rules.
|
|
64
|
+
ESLint requires the installation of the `eslint` and `jiti` packages as development dependencies. Other development
|
|
65
|
+
dependencies may be required if overriding or supplementing the core rules.
|
package/config/release.json
CHANGED
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
"organization": "aidc-toolkit",
|
|
3
3
|
"repositories": {
|
|
4
4
|
"dev": {
|
|
5
|
-
"version": "0.9.
|
|
5
|
+
"version": "0.9.12-beta"
|
|
6
6
|
},
|
|
7
7
|
"core": {
|
|
8
|
-
"version": "0.9.
|
|
8
|
+
"version": "0.9.12-beta"
|
|
9
9
|
},
|
|
10
10
|
"utility": {
|
|
11
|
-
"version": "0.9.
|
|
11
|
+
"version": "0.9.12-beta"
|
|
12
12
|
},
|
|
13
13
|
"gs1": {
|
|
14
14
|
"name": "gs1",
|
|
15
|
-
"version": "0.9.
|
|
15
|
+
"version": "0.9.12-beta"
|
|
16
16
|
},
|
|
17
17
|
"demo": {
|
|
18
|
-
"version": "0.9.
|
|
18
|
+
"version": "0.9.12-beta"
|
|
19
19
|
},
|
|
20
20
|
"aidc-toolkit.github.io": {
|
|
21
21
|
"directory": "doc",
|
|
22
|
-
"version": "0.9.
|
|
22
|
+
"version": "0.9.12-beta"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -42,7 +42,7 @@ var import_eslint_plugin_jsdoc = __toESM(require("eslint-plugin-jsdoc"), 1);
|
|
|
42
42
|
var import_typescript_eslint = __toESM(require("typescript-eslint"), 1);
|
|
43
43
|
var esLintConfigAIDCToolkit = import_typescript_eslint.default.config(
|
|
44
44
|
{
|
|
45
|
-
ignores: ["
|
|
45
|
+
ignores: ["dist"]
|
|
46
46
|
},
|
|
47
47
|
import_js.default.configs.recommended,
|
|
48
48
|
...import_typescript_eslint.default.configs.strictTypeChecked,
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import jsdoc from "eslint-plugin-jsdoc";
|
|
|
6
6
|
import tseslint from "typescript-eslint";
|
|
7
7
|
var esLintConfigAIDCToolkit = tseslint.config(
|
|
8
8
|
{
|
|
9
|
-
ignores: ["
|
|
9
|
+
ignores: ["dist"]
|
|
10
10
|
},
|
|
11
11
|
js.configs.recommended,
|
|
12
12
|
...tseslint.configs.strictTypeChecked,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aidc-toolkit/dev",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.12-beta",
|
|
4
4
|
"description": "Shared development artefacts for AIDC Toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,20 +27,21 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"copy-files-from-to": "^3.12.0",
|
|
30
|
-
"eslint": "^9.
|
|
30
|
+
"eslint": "^9.20.1",
|
|
31
|
+
"jiti": "^2.4.2",
|
|
31
32
|
"ts-node": "^10.9.2",
|
|
32
|
-
"tsup": "^8.3.
|
|
33
|
+
"tsup": "^8.3.6",
|
|
33
34
|
"tsx": "^4.19.2",
|
|
34
35
|
"typescript": "^5.7.3"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@octokit/types": "^13.
|
|
39
|
-
"@stylistic/eslint-plugin": "^
|
|
40
|
-
"eslint-config-love": "^
|
|
41
|
-
"eslint-plugin-jsdoc": "^50.6.
|
|
42
|
-
"octokit": "^4.1.
|
|
43
|
-
"typescript-eslint": "^8.
|
|
38
|
+
"@eslint/js": "^9.20.0",
|
|
39
|
+
"@octokit/types": "^13.8.0",
|
|
40
|
+
"@stylistic/eslint-plugin": "^3.1.0",
|
|
41
|
+
"eslint-config-love": "^118.0.0",
|
|
42
|
+
"eslint-plugin-jsdoc": "^50.6.3",
|
|
43
|
+
"octokit": "^4.1.2",
|
|
44
|
+
"typescript-eslint": "^8.24.0",
|
|
44
45
|
"yaml": "^2.7.0"
|
|
45
46
|
}
|
|
46
47
|
}
|
|
File without changes
|