@monorepolint/rules 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 +4 -0
- package/.turbo/turbo-test.log +666 -0
- package/.turbo/turbo-transpile-typescript.log +14 -0
- package/CHANGELOG.md +42 -0
- 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 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 57ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @monorepolint/rules
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3351fa9: @monorepolint/rules exposes createRuleFactory
|
|
8
|
+
- 45fb496: I failed to take good notes over the last few years. Sorry.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- b024660: Internal change to how publish happens
|
|
13
|
+
- b024660: Internal
|
|
14
|
+
- Updated dependencies [b024660]
|
|
15
|
+
- Updated dependencies [3351fa9]
|
|
16
|
+
- Updated dependencies [b024660]
|
|
17
|
+
- Updated dependencies [45fb496]
|
|
18
|
+
- @monorepolint/config@0.5.0
|
|
19
|
+
- @monorepolint/core@0.5.0
|
|
20
|
+
- @monorepolint/utils@0.5.0
|
|
21
|
+
|
|
22
|
+
## 0.5.0-beta.10
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- 3351fa9: @monorepolint/rules exposes createRuleFactory
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [3351fa9]
|
|
31
|
+
- @monorepolint/config@0.5.0-beta.10
|
|
32
|
+
- @monorepolint/core@0.5.0-beta.10
|
|
33
|
+
- @monorepolint/utils@0.5.0-beta.10
|
|
34
|
+
|
|
35
|
+
## 0.5.0-beta.9
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Internal
|
|
40
|
+
- Updated dependencies
|
|
41
|
+
- @monorepolint/config@0.5.0-beta.9
|
|
42
|
+
- @monorepolint/core@0.5.0-beta.9
|
|
43
|
+
- @monorepolint/utils@0.5.0-beta.9
|
|
44
|
+
|
|
3
45
|
## 0.5.0-beta.8
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|