@xylabs/ts-scripts-yarn3 5.1.10 → 5.1.11
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/dist/actions/index.mjs +0 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/index.mjs +0 -1
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/actions/package/lint.mjs +0 -1
- package/dist/actions/package/lint.mjs.map +1 -1
- package/dist/bin/package/fix.mjs +0 -1
- package/dist/bin/package/fix.mjs.map +1 -1
- package/dist/bin/package/lint.mjs +0 -1
- package/dist/bin/package/lint.mjs.map +1 -1
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/actions/package/lint.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/ts-scripts-yarn3",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.11",
|
|
4
4
|
"description": "TypeScript project scripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
"@swc/core": "^1.11.5",
|
|
94
94
|
"@types/node": "^22.13.5",
|
|
95
95
|
"@types/yargs": "^17.0.33",
|
|
96
|
-
"@xylabs/tsconfig": "^5.1.
|
|
97
|
-
"@xylabs/tsconfig-dom": "^5.1.
|
|
96
|
+
"@xylabs/tsconfig": "^5.1.11",
|
|
97
|
+
"@xylabs/tsconfig-dom": "^5.1.11",
|
|
98
98
|
"async-mutex": "^0.5.0",
|
|
99
99
|
"chalk": "^5.4.1",
|
|
100
100
|
"cosmiconfig": "^9.0.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"@types/license-checker": "^25.0.6",
|
|
137
137
|
"@types/parse-git-config": "^3.0.4",
|
|
138
138
|
"@types/picomatch": "^3.0.2",
|
|
139
|
-
"@xylabs/tsconfig": "^5.1.
|
|
139
|
+
"@xylabs/tsconfig": "^5.1.11",
|
|
140
140
|
"publint": "^0.3.7",
|
|
141
141
|
"rimraf": "^6.0.1",
|
|
142
142
|
"typescript": "^5.7.3"
|
|
@@ -42,7 +42,6 @@ function getFiles(dir: string, ignoreFolders: string[]): string[] {
|
|
|
42
42
|
const currentDirectory = cwd()
|
|
43
43
|
const subDirectory = dir.split(currentDirectory)[1]
|
|
44
44
|
if (ignoreFolders.includes(subDirectory)) return []
|
|
45
|
-
console.log(subDirectory)
|
|
46
45
|
return readdirSync(dir, { withFileTypes: true })
|
|
47
46
|
.flatMap((dirent) => {
|
|
48
47
|
const res = path.resolve(dir, dirent.name)
|