@superblocksteam/util 2.0.93-next.7 → 2.0.94-next.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.
- package/.turbo/turbo-build.log +1 -1
- package/eslint.config.mjs +1 -1
- package/lint-staged.config.mjs +2 -1
- package/package.json +3 -4
- package/turbo.json +1 -4
- package/.prettierrc +0 -18
package/.turbo/turbo-build.log
CHANGED
package/eslint.config.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import js from "@eslint/js";
|
|
2
2
|
import { defineConfig } from "eslint/config";
|
|
3
|
+
import prettier from "eslint-config-prettier";
|
|
3
4
|
import turbo from "eslint-config-turbo/flat";
|
|
4
5
|
import importPlugin from "eslint-plugin-import";
|
|
5
|
-
import prettier from "eslint-plugin-prettier/recommended";
|
|
6
6
|
import unicorn from "eslint-plugin-unicorn";
|
|
7
7
|
import globals from "globals";
|
|
8
8
|
import tseslint from "typescript-eslint";
|
package/lint-staged.config.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"*.{js,jsx,ts,tsx,mjs,mts}":
|
|
3
|
-
"eslint --fix --max-warnings 0 --concurrency=auto",
|
|
3
|
+
"eslint --fix --max-warnings 0 --no-warn-ignored --concurrency=auto",
|
|
4
|
+
"*": "oxfmt --no-error-on-unmatched-pattern",
|
|
4
5
|
"**/*.{ts,tsx,mts}": () => "pnpm typecheck",
|
|
5
6
|
};
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/util",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.94-next.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://www.superblocks.com",
|
|
6
6
|
"license": "Superblocks Community Software License",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"main": "dist/index.js",
|
|
8
9
|
"dependencies": {
|
|
9
10
|
"ajv": "^8.12.0",
|
|
@@ -24,15 +25,13 @@
|
|
|
24
25
|
"@types/mime-types": "^2.1.1",
|
|
25
26
|
"@types/node": "^24",
|
|
26
27
|
"eslint": "^9.39.2",
|
|
28
|
+
"eslint-config-prettier": "^10.1.8",
|
|
27
29
|
"eslint-config-turbo": "^2.8.3",
|
|
28
30
|
"eslint-plugin-import": "^2.32.0",
|
|
29
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
30
31
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
31
32
|
"globals": "^17.3.0",
|
|
32
|
-
"prettier": "^3.7.4",
|
|
33
33
|
"typescript-eslint": "^8.54.0"
|
|
34
34
|
},
|
|
35
|
-
"sideEffects": false,
|
|
36
35
|
"publishConfig": {
|
|
37
36
|
"registry": "https://registry.npmjs.org"
|
|
38
37
|
},
|
package/turbo.json
CHANGED
package/.prettierrc
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"printWidth": 80,
|
|
3
|
-
"tabWidth": 2,
|
|
4
|
-
"useTabs": false,
|
|
5
|
-
"semi": true,
|
|
6
|
-
"singleQuote": false,
|
|
7
|
-
"trailingComma": "all",
|
|
8
|
-
"arrowParens": "always",
|
|
9
|
-
"plugins": ["prettier-plugin-pkg", "@prettier/plugin-oxc"],
|
|
10
|
-
"overrides": [
|
|
11
|
-
{
|
|
12
|
-
"files": ["*.ts", "*.tsx", "*.mts"],
|
|
13
|
-
"options": {
|
|
14
|
-
"parser": "typescript"
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
]
|
|
18
|
-
}
|