@orchestrator-ui/eslint-config-custom 0.0.2 → 0.0.5
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 +5 -5
- package/CHANGELOG.md +18 -0
- package/package.json +8 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
yarn run v1.22.
|
|
1
|
+
yarn run v1.22.21
|
|
2
2
|
$ tsup index.js --format esm
|
|
3
3
|
[34mCLI[39m Building entry: index.js
|
|
4
|
-
[34mCLI[39m tsup v7.
|
|
4
|
+
[34mCLI[39m tsup v7.2.0
|
|
5
5
|
[34mCLI[39m Target: node16
|
|
6
6
|
[34mESM[39m Build start
|
|
7
|
-
[32mESM[39m [1mdist
|
|
8
|
-
[32mESM[39m ⚡️ Build success in
|
|
9
|
-
Done in 0.
|
|
7
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m1.26 KB[39m
|
|
8
|
+
[32mESM[39m ⚡️ Build success in 19ms
|
|
9
|
+
Done in 0.33s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @orchestrator-ui/eslint-config-custom
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6597ac1: Test release after adding absolute imports (issue 414)
|
|
8
|
+
|
|
9
|
+
## 0.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6d680f6: Test release before adding absolute imports (issue 414)
|
|
14
|
+
|
|
15
|
+
## 0.0.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 3f17e71: Adds eslint dependency
|
|
20
|
+
|
|
3
21
|
## 0.0.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchestrator-ui/eslint-config-custom",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"main": "./dist/index.js",
|
|
3
|
+
"version": "0.0.5",
|
|
5
4
|
"license": "MIT",
|
|
6
5
|
"scripts": {
|
|
7
6
|
"build": "tsup index.js --format esm",
|
|
8
|
-
"dev": "yarn build -- --watch"
|
|
7
|
+
"dev": "yarn build -- --watch",
|
|
8
|
+
"reset": "rm -rf node_modules"
|
|
9
9
|
},
|
|
10
|
-
"
|
|
11
|
-
"@typescript-eslint/eslint-plugin": "
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@typescript-eslint/eslint-plugin": "6.2.0",
|
|
12
|
+
"eslint": "^8.48.0",
|
|
12
13
|
"eslint-config-next": "^13.4.1",
|
|
13
14
|
"eslint-config-prettier": "^8.3.0",
|
|
14
|
-
"eslint-
|
|
15
|
-
"eslint-
|
|
15
|
+
"eslint-config-turbo": "^1.10.13",
|
|
16
|
+
"eslint-plugin-react": "7.28.0"
|
|
16
17
|
},
|
|
17
18
|
"publishConfig": {
|
|
18
19
|
"access": "public"
|