@monorepolint/utils 0.5.0-beta.8 → 0.5.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-clean.log +4 -0
- package/.turbo/turbo-compile-typescript.log +4 -0
- package/.turbo/turbo-lint.log +15 -0
- package/.turbo/turbo-test.log +26 -0
- package/.turbo/turbo-transpile-typescript.log +14 -0
- package/CHANGELOG.md +19 -0
- package/build/js/index.js +894 -0
- package/build/js/index.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/build/types/AggregateTiming.d.ts +15 -0
- package/build/types/AggregateTiming.d.ts.map +1 -0
- package/build/types/CachingHost.d.ts +39 -0
- package/build/types/CachingHost.d.ts.map +1 -0
- package/build/types/Host.d.ts +38 -0
- package/build/types/Host.d.ts.map +1 -0
- package/build/types/PackageJson.d.ts +20 -0
- package/build/types/PackageJson.d.ts.map +1 -0
- package/build/types/SimpleHost.d.ts +35 -0
- package/build/types/SimpleHost.d.ts.map +1 -0
- package/build/types/Table.d.ts +53 -0
- package/build/types/Table.d.ts.map +1 -0
- package/build/types/Timing.d.ts +9 -0
- package/build/types/Timing.d.ts.map +1 -0
- package/build/types/__tests__/CachingHost.spec.d.ts +2 -0
- package/build/types/__tests__/CachingHost.spec.d.ts.map +1 -0
- package/build/types/findWorkspaceDir.d.ts +10 -0
- package/build/types/findWorkspaceDir.d.ts.map +1 -0
- package/build/types/getPackageNameToDir.d.ts +14 -0
- package/build/types/getPackageNameToDir.d.ts.map +1 -0
- package/build/types/getWorkspacePackageDirs.d.ts +9 -0
- package/build/types/getWorkspacePackageDirs.d.ts.map +1 -0
- package/build/types/index.d.ts +20 -0
- package/build/types/index.d.ts.map +1 -0
- package/build/types/matchesAnyGlob.d.ts +17 -0
- package/build/types/matchesAnyGlob.d.ts.map +1 -0
- package/build/types/mutateJson.d.ts +9 -0
- package/build/types/mutateJson.d.ts.map +1 -0
- package/build/types/nanosecondsToSanity.d.ts +8 -0
- package/build/types/nanosecondsToSanity.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
> @monorepolint/utils@0.5.0 lint /home/runner/work/monorepolint/monorepolint/packages/utils
|
|
3
|
+
> eslint .
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
/home/runner/work/monorepolint/monorepolint/packages/utils/src/Table.ts
|
|
7
|
+
44:28 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
8
|
+
60:37 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
9
|
+
60:42 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
10
|
+
60:68 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
11
|
+
60:73 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
12
|
+
64:30 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
13
|
+
|
|
14
|
+
✖ 6 problems (0 errors, 6 warnings)
|
|
15
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
> @monorepolint/utils@0.5.0 test /home/runner/work/monorepolint/monorepolint/packages/utils
|
|
3
|
+
> NODE_OPTIONS=--experimental-vm-modules jest --colors --passWithNoTests
|
|
4
|
+
|
|
5
|
+
(node:2532) ExperimentalWarning: VM Modules is an experimental feature and might change at any time
|
|
6
|
+
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
7
|
+
[0m[7m[1m[32m PASS [39m[22m[27m[0m [2msrc/__tests__/[22m[1mCachingHost.spec.ts[22m
|
|
8
|
+
CachingHost
|
|
9
|
+
fs
|
|
10
|
+
[32m✓[39m [2mAnswers exists() properly (13 ms)[22m
|
|
11
|
+
[32m✓[39m [2mproperly handles deletes (3 ms)[22m
|
|
12
|
+
[32m✓[39m [2mhandles simple read/write workflow (2 ms)[22m
|
|
13
|
+
[32m✓[39m [2mhandles target symlink changing (1 ms)[22m
|
|
14
|
+
[32m✓[39m [2mhandles writing symlinks properly (3 ms)[22m
|
|
15
|
+
[32m✓[39m [2mhandles writing symlinks properly if you read it first (3 ms)[22m
|
|
16
|
+
[32m✓[39m [2mhandles creating new symlinks (8 ms)[22m
|
|
17
|
+
[32m✓[39m [2mmakes directories (2 ms)[22m
|
|
18
|
+
[32m✓[39m [2mcan unlink empty dirs (1 ms)[22m
|
|
19
|
+
[32m✓[39m [2mdoesnt let you delete a directory with files (29 ms)[22m
|
|
20
|
+
[32m✓[39m [2mdoesn't let you rmdir() a file (2 ms)[22m
|
|
21
|
+
|
|
22
|
+
[1mTest Suites: [22m[1m[32m1 passed[39m[22m, 1 total
|
|
23
|
+
[1mTests: [22m[1m[32m11 passed[39m[22m, 11 total
|
|
24
|
+
[1mSnapshots: [22m0 total
|
|
25
|
+
[1mTime:[22m 4.095 s
|
|
26
|
+
[2mRan all test suites[22m[2m.[22m
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
> @monorepolint/utils@0.5.0 transpile-typescript /home/runner/work/monorepolint/monorepolint/packages/utils
|
|
3
|
+
> tsup --config ../../tsup.config.cjs
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.0.2
|
|
8
|
+
[34mCLI[39m Using tsup config: /home/runner/work/monorepolint/monorepolint/tsup.config.cjs
|
|
9
|
+
[34mCLI[39m Target: node16
|
|
10
|
+
[34mCLI[39m Cleaning output folder
|
|
11
|
+
[34mESM[39m Build start
|
|
12
|
+
[32mESM[39m [1mbuild/js/index.js [22m[32m26.63 KB[39m
|
|
13
|
+
[32mESM[39m [1mbuild/js/index.js.map [22m[32m59.86 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 106ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @monorepolint/utils
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 45fb496: I failed to take good notes over the last few years. Sorry.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- b024660: Internal change to how publish happens
|
|
12
|
+
- b024660: Internal
|
|
13
|
+
|
|
14
|
+
## 0.5.0-beta.10
|
|
15
|
+
|
|
16
|
+
## 0.5.0-beta.9
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Internal
|
|
21
|
+
|
|
3
22
|
## 0.5.0-beta.8
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|