@adbayb/stack 0.0.0-next-03de63d → 0.0.0-next-711fb0a

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.
@@ -56,6 +56,7 @@ export const config = [
56
56
  "react/no-this-in-sfc": "error",
57
57
  "react/no-typos": "error",
58
58
  "react/no-unescaped-entities": "error",
59
+ "react/no-unknown-property": "error",
59
60
  "react/no-unsafe": "error",
60
61
  "react/no-unstable-nested-components": "error",
61
62
  "react/no-unused-class-component-methods": "error",
@@ -151,7 +151,6 @@ export const config = [
151
151
  "sonarjs/no-unenclosed-multiline-block": "error",
152
152
  "sonarjs/no-uniq-key": "error",
153
153
  "sonarjs/no-unsafe-unzip": "error",
154
- "sonarjs/no-unstable-nested-components": "error",
155
154
  "sonarjs/no-unthrown-error": "error",
156
155
  "sonarjs/no-unused-collection": "error",
157
156
  "sonarjs/no-useless-call": "error",
@@ -196,7 +195,7 @@ export const config = [
196
195
  "sonarjs/sonar-no-magic-numbers": "error",
197
196
  "sonarjs/sonar-no-misleading-character-class": "error",
198
197
  "sonarjs/sonar-no-regex-spaces": "error",
199
- "sonarjs/sonar-no-unused-class-component-methods": "error",
198
+ // "sonarjs/sonar-no-unused-class-component-methods": "error", // Disabled since it involves `eslint-plugin-react` activation
200
199
  "sonarjs/sonar-prefer-regexp-exec": "error",
201
200
  "sonarjs/sql-queries": "error",
202
201
  "sonarjs/stable-tests": "error",
package/dist/index.js CHANGED
@@ -168,7 +168,7 @@ const ESLINT_EXTENSIONS = [
168
168
  "mdx"
169
169
  ];
170
170
 
171
- var version = "0.0.0-next-03de63d";
171
+ var version = "0.0.0-next-711fb0a";
172
172
 
173
173
  const VERSION = version;
174
174
 
@@ -752,15 +752,14 @@ const createProgram = (...commandFactories)=>{
752
752
  const program = termost({
753
753
  name: "stack",
754
754
  description: "Toolbox to easily scaffold and maintain a project",
755
- version: VERSION
756
- }, {
757
755
  onException () {
758
756
  botMessage({
759
757
  title: "Oops, an error occurred",
760
758
  description: "Keep calm and carry on with some coffee ☕️",
761
759
  type: "error"
762
760
  });
763
- }
761
+ },
762
+ version: VERSION
764
763
  });
765
764
  for (const commandBuilder of commandFactories){
766
765
  commandBuilder(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-03de63d",
3
+ "version": "0.0.0-next-711fb0a",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -43,7 +43,7 @@
43
43
  "license": "MIT",
44
44
  "devDependencies": {
45
45
  "@types/node": "22.9.0",
46
- "quickbundle": "2.6.0"
46
+ "quickbundle": "2.8.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "@changesets/changelog-github": "^0.5.0",
@@ -53,13 +53,13 @@
53
53
  "@eslint/compat": "^1.2.2",
54
54
  "@eslint/eslintrc": "^3.1.0",
55
55
  "@stylistic/eslint-plugin": "^2.10.1",
56
- "@vitest/eslint-plugin": "^1.1.7",
56
+ "@vitest/eslint-plugin": "^1.1.8",
57
57
  "eslint-config-prettier": "^9.1.0",
58
58
  "eslint-import-resolver-typescript": "^3.6.3",
59
59
  "eslint-plugin-depend": "^0.12.0",
60
- "eslint-plugin-import-x": "^4.4.0",
60
+ "eslint-plugin-import-x": "^4.4.2",
61
61
  "eslint-plugin-jest-formatting": "^3.1.0",
62
- "eslint-plugin-jsdoc": "^50.4.3",
62
+ "eslint-plugin-jsdoc": "^50.5.0",
63
63
  "eslint-plugin-mdx": "^3.1.5",
64
64
  "eslint-plugin-n": "^17.13.1",
65
65
  "eslint-plugin-prettier": "^5.2.1",
@@ -71,9 +71,9 @@
71
71
  "fdir": "^6.4.2",
72
72
  "globals": "^15.12.0",
73
73
  "prettier": "^3.3.3",
74
- "termost": "^0.18.0",
74
+ "termost": "^1.2.0",
75
75
  "turbo": "^2.2.3",
76
- "typescript-eslint": "^8.13.0",
76
+ "typescript-eslint": "^8.14.0",
77
77
  "typescript": "^5.6.3"
78
78
  },
79
79
  "scripts": {