@monorepolint/rules 0.5.0-beta.1 → 0.5.0-beta.10
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 +4 -0
- package/.turbo/turbo-test.log +667 -0
- package/.turbo/turbo-transpile-typescript.log +14 -0
- package/CHANGELOG.md +29 -4
- package/build/js/index.js +1422 -0
- package/build/js/index.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/build/types/__tests__/alphabeticalScripts.spec.d.ts +8 -0
- package/build/types/__tests__/alphabeticalScripts.spec.d.ts.map +1 -0
- package/build/types/__tests__/bannedDependencies.spec.d.ts +2 -0
- package/build/types/__tests__/bannedDependencies.spec.d.ts.map +1 -0
- package/build/types/__tests__/consistentDependencies.spec.d.ts +2 -0
- package/build/types/__tests__/consistentDependencies.spec.d.ts.map +1 -0
- package/build/types/__tests__/consistentVersions.spec.d.ts +8 -0
- package/build/types/__tests__/consistentVersions.spec.d.ts.map +1 -0
- package/build/types/__tests__/fileContents.spec.d.ts +8 -0
- package/build/types/__tests__/fileContents.spec.d.ts.map +1 -0
- package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts +8 -0
- package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts.map +1 -0
- package/build/types/__tests__/nestedWorkspaces.spec.d.ts +2 -0
- package/build/types/__tests__/nestedWorkspaces.spec.d.ts.map +1 -0
- package/build/types/__tests__/packageEntry.spec.d.ts +8 -0
- package/build/types/__tests__/packageEntry.spec.d.ts.map +1 -0
- package/build/types/__tests__/packageOrder.spec.d.ts +8 -0
- package/build/types/__tests__/packageOrder.spec.d.ts.map +1 -0
- package/build/types/__tests__/packageScript.spec.d.ts +8 -0
- package/build/types/__tests__/packageScript.spec.d.ts.map +1 -0
- package/build/types/__tests__/requireDependency.spec.d.ts +2 -0
- package/build/types/__tests__/requireDependency.spec.d.ts.map +1 -0
- package/build/types/__tests__/utils.d.ts +81 -0
- package/build/types/__tests__/utils.d.ts.map +1 -0
- package/build/types/alphabeticalDependencies.d.ts +8 -0
- package/build/types/alphabeticalDependencies.d.ts.map +1 -0
- package/build/types/alphabeticalScripts.d.ts +8 -0
- package/build/types/alphabeticalScripts.d.ts.map +1 -0
- package/build/types/bannedDependencies.d.ts +48 -0
- package/build/types/bannedDependencies.d.ts.map +1 -0
- package/build/types/consistentDependencies.d.ts +16 -0
- package/build/types/consistentDependencies.d.ts.map +1 -0
- package/build/types/consistentVersions.d.ts +19 -0
- package/build/types/consistentVersions.d.ts.map +1 -0
- package/build/types/fileContents.d.ts +24 -0
- package/build/types/fileContents.d.ts.map +1 -0
- package/build/types/index.d.ts +21 -0
- package/build/types/index.d.ts.map +1 -0
- package/build/types/mustSatisfyPeerDependencies.d.ts +333 -0
- package/build/types/mustSatisfyPeerDependencies.d.ts.map +1 -0
- package/build/types/nestedWorkspaces.d.ts +10 -0
- package/build/types/nestedWorkspaces.d.ts.map +1 -0
- package/build/types/packageEntry.d.ts +43 -0
- package/build/types/packageEntry.d.ts.map +1 -0
- package/build/types/packageOrder.d.ts +10 -0
- package/build/types/packageOrder.d.ts.map +1 -0
- package/build/types/packageScript.d.ts +32 -0
- package/build/types/packageScript.d.ts.map +1 -0
- package/build/types/requireDependency.d.ts +29 -0
- package/build/types/requireDependency.d.ts.map +1 -0
- package/build/types/standardTsconfig.d.ts +29 -0
- package/build/types/standardTsconfig.d.ts.map +1 -0
- package/build/types/util/checkAlpha.d.ts +10 -0
- package/build/types/util/checkAlpha.d.ts.map +1 -0
- package/build/types/util/createRuleFactory.d.ts +14 -0
- package/build/types/util/createRuleFactory.d.ts.map +1 -0
- package/build/types/util/makeDirectory.d.ts +8 -0
- package/build/types/util/makeDirectory.d.ts.map +1 -0
- package/build/types/util/packageDependencyGraphService.d.ts +37 -0
- package/build/types/util/packageDependencyGraphService.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/alphabeticalDependencies.ts +2 -2
- package/src/alphabeticalScripts.ts +2 -2
- package/src/bannedDependencies.ts +2 -2
- package/src/consistentDependencies.ts +2 -2
- package/src/consistentVersions.ts +2 -2
- package/src/fileContents.ts +2 -2
- package/src/index.ts +8 -0
- package/src/mustSatisfyPeerDependencies.ts +2 -2
- package/src/nestedWorkspaces.ts +4 -4
- package/src/packageEntry.ts +2 -2
- package/src/packageOrder.ts +2 -2
- package/src/packageScript.ts +2 -2
- package/src/requireDependency.ts +2 -2
- package/src/standardTsconfig.ts +2 -2
- package/src/util/createRuleFactory.ts +33 -0
- package/src/public/util.ts +0 -1
- package/src/util/makeRule.ts +0 -29
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
> @monorepolint/rules@0.5.0-beta.10 transpile-typescript /home/runner/work/monorepolint/monorepolint/packages/rules
|
|
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[32m50.71 KB[39m
|
|
13
|
+
[32mESM[39m [1mbuild/js/index.js.map [22m[32m101.93 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 61ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,37 @@
|
|
|
1
1
|
# @monorepolint/rules
|
|
2
2
|
|
|
3
|
-
## 0.5.0-beta.
|
|
3
|
+
## 0.5.0-beta.10
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3351fa9: @monorepolint/rules exposes createRuleFactory
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [3351fa9]
|
|
12
|
+
- @monorepolint/config@0.5.0-beta.10
|
|
13
|
+
- @monorepolint/core@0.5.0-beta.10
|
|
14
|
+
- @monorepolint/utils@0.5.0-beta.10
|
|
15
|
+
|
|
16
|
+
## 0.5.0-beta.9
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Interal changes
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @monorepolint/config@0.5.0-beta.9
|
|
23
|
+
- @monorepolint/core@0.5.0-beta.9
|
|
24
|
+
- @monorepolint/utils@0.5.0-beta.9
|
|
25
|
+
|
|
26
|
+
## 0.5.0-beta.8
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
6
29
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
- @monorepolint/
|
|
30
|
+
- b024660: Internal change to how publish happens
|
|
31
|
+
- Updated dependencies [b024660]
|
|
32
|
+
- @monorepolint/config@0.5.0-beta.8
|
|
33
|
+
- @monorepolint/core@0.5.0-beta.8
|
|
34
|
+
- @monorepolint/utils@0.5.0-beta.8
|
|
10
35
|
|
|
11
36
|
## 0.5.0-beta.0
|
|
12
37
|
|