@monorepolint/rules 0.5.0-beta.8 → 0.5.0-beta.9

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.
Files changed (76) hide show
  1. package/.turbo/turbo-clean.log +4 -0
  2. package/.turbo/turbo-compile-typescript.log +4 -0
  3. package/.turbo/turbo-lint.log +4 -0
  4. package/.turbo/turbo-test.log +667 -0
  5. package/.turbo/turbo-transpile-typescript.log +18 -0
  6. package/CHANGELOG.md +10 -0
  7. package/build/js/chunk-A2MUUSNE.js +26 -0
  8. package/build/js/chunk-A2MUUSNE.js.map +1 -0
  9. package/build/js/index.js +1403 -0
  10. package/build/js/index.js.map +1 -0
  11. package/build/js/public/util.js +7 -0
  12. package/build/js/public/util.js.map +1 -0
  13. package/build/tsconfig.tsbuildinfo +1 -0
  14. package/build/types/__tests__/alphabeticalScripts.spec.d.ts +8 -0
  15. package/build/types/__tests__/alphabeticalScripts.spec.d.ts.map +1 -0
  16. package/build/types/__tests__/bannedDependencies.spec.d.ts +2 -0
  17. package/build/types/__tests__/bannedDependencies.spec.d.ts.map +1 -0
  18. package/build/types/__tests__/consistentDependencies.spec.d.ts +2 -0
  19. package/build/types/__tests__/consistentDependencies.spec.d.ts.map +1 -0
  20. package/build/types/__tests__/consistentVersions.spec.d.ts +8 -0
  21. package/build/types/__tests__/consistentVersions.spec.d.ts.map +1 -0
  22. package/build/types/__tests__/fileContents.spec.d.ts +8 -0
  23. package/build/types/__tests__/fileContents.spec.d.ts.map +1 -0
  24. package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts +8 -0
  25. package/build/types/__tests__/mustSatisfyPeerDependencies.spec.d.ts.map +1 -0
  26. package/build/types/__tests__/nestedWorkspaces.spec.d.ts +2 -0
  27. package/build/types/__tests__/nestedWorkspaces.spec.d.ts.map +1 -0
  28. package/build/types/__tests__/packageEntry.spec.d.ts +8 -0
  29. package/build/types/__tests__/packageEntry.spec.d.ts.map +1 -0
  30. package/build/types/__tests__/packageOrder.spec.d.ts +8 -0
  31. package/build/types/__tests__/packageOrder.spec.d.ts.map +1 -0
  32. package/build/types/__tests__/packageScript.spec.d.ts +8 -0
  33. package/build/types/__tests__/packageScript.spec.d.ts.map +1 -0
  34. package/build/types/__tests__/requireDependency.spec.d.ts +2 -0
  35. package/build/types/__tests__/requireDependency.spec.d.ts.map +1 -0
  36. package/build/types/__tests__/utils.d.ts +81 -0
  37. package/build/types/__tests__/utils.d.ts.map +1 -0
  38. package/build/types/alphabeticalDependencies.d.ts +8 -0
  39. package/build/types/alphabeticalDependencies.d.ts.map +1 -0
  40. package/build/types/alphabeticalScripts.d.ts +8 -0
  41. package/build/types/alphabeticalScripts.d.ts.map +1 -0
  42. package/build/types/bannedDependencies.d.ts +66 -0
  43. package/build/types/bannedDependencies.d.ts.map +1 -0
  44. package/build/types/consistentDependencies.d.ts +18 -0
  45. package/build/types/consistentDependencies.d.ts.map +1 -0
  46. package/build/types/consistentVersions.d.ts +25 -0
  47. package/build/types/consistentVersions.d.ts.map +1 -0
  48. package/build/types/fileContents.d.ts +39 -0
  49. package/build/types/fileContents.d.ts.map +1 -0
  50. package/build/types/index.d.ts +20 -0
  51. package/build/types/index.d.ts.map +1 -0
  52. package/build/types/mustSatisfyPeerDependencies.d.ts +427 -0
  53. package/build/types/mustSatisfyPeerDependencies.d.ts.map +1 -0
  54. package/build/types/nestedWorkspaces.d.ts +10 -0
  55. package/build/types/nestedWorkspaces.d.ts.map +1 -0
  56. package/build/types/packageEntry.d.ts +62 -0
  57. package/build/types/packageEntry.d.ts.map +1 -0
  58. package/build/types/packageOrder.d.ts +12 -0
  59. package/build/types/packageOrder.d.ts.map +1 -0
  60. package/build/types/packageScript.d.ts +47 -0
  61. package/build/types/packageScript.d.ts.map +1 -0
  62. package/build/types/public/util.d.ts +2 -0
  63. package/build/types/public/util.d.ts.map +1 -0
  64. package/build/types/requireDependency.d.ts +50 -0
  65. package/build/types/requireDependency.d.ts.map +1 -0
  66. package/build/types/standardTsconfig.d.ts +29 -0
  67. package/build/types/standardTsconfig.d.ts.map +1 -0
  68. package/build/types/util/checkAlpha.d.ts +10 -0
  69. package/build/types/util/checkAlpha.d.ts.map +1 -0
  70. package/build/types/util/makeDirectory.d.ts +8 -0
  71. package/build/types/util/makeDirectory.d.ts.map +1 -0
  72. package/build/types/util/makeRule.d.ts +12 -0
  73. package/build/types/util/makeRule.d.ts.map +1 -0
  74. package/build/types/util/packageDependencyGraphService.d.ts +37 -0
  75. package/build/types/util/packageDependencyGraphService.d.ts.map +1 -0
  76. package/package.json +4 -4
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ export {};
8
+ //# sourceMappingURL=packageOrder.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"packageOrder.spec.d.ts","sourceRoot":"","sources":["../../../src/__tests__/packageOrder.spec.ts"],"names":[],"mappings":"AAAA;;;;;GAKG"}
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ export {};
8
+ //# sourceMappingURL=packageScript.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"packageScript.spec.d.ts","sourceRoot":"","sources":["../../../src/__tests__/packageScript.spec.ts"],"names":[],"mappings":"AAAA;;;;;GAKG"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=requireDependency.spec.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"requireDependency.spec.d.ts","sourceRoot":"","sources":["../../../src/__tests__/requireDependency.spec.ts"],"names":[],"mappings":""}
@@ -0,0 +1,81 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ import { AddErrorOptions, WorkspaceContext } from "@monorepolint/config";
8
+ import { Host } from "@monorepolint/utils";
9
+ import { jest } from "@jest/globals";
10
+ export declare function jsonToString(obj: unknown): string;
11
+ interface TestingWorkspaceOpts {
12
+ host: Host;
13
+ rootProjectName?: string;
14
+ fixFlag: boolean;
15
+ }
16
+ export declare function createTestingWorkspace(inboundOpts: TestingWorkspaceOpts): Promise<DefaultTestingWorkspace>;
17
+ interface RealTestingWorkspaceOpts extends Required<TestingWorkspaceOpts> {
18
+ rootPath: string;
19
+ }
20
+ export interface TestingWorkspace {
21
+ /**
22
+ * Adds a utf8 file to `packageName` with `relativePath` to the package directory.
23
+ *
24
+ * @param packageName The child package to add to or undefined for root package
25
+ * @param filePath The path of the file to be written. Will be prepended with package dir
26
+ * @param contents the contents to be written (as utf8)
27
+ */
28
+ writeFile(filePath: string, contents: string): void;
29
+ writeJsonFile(filePath: string, json: object): void;
30
+ addProject(name: string, fields: object): void;
31
+ getFilePath(filePath: string): string;
32
+ readFile(filePath: string): string;
33
+ /**
34
+ * Helper method for matching failures via jest `expect().toMatchObject
35
+ *
36
+ */
37
+ failureMatcher(opts: {
38
+ file: string;
39
+ message: string;
40
+ hasFixer: boolean;
41
+ }): any;
42
+ readonly context: WorkspaceContext;
43
+ }
44
+ declare class DefaultTestingWorkspace implements TestingWorkspace {
45
+ private opts;
46
+ readonly context: WorkspaceContext;
47
+ constructor(opts: RealTestingWorkspaceOpts, context: WorkspaceContext);
48
+ addProject(name: string, fields: object): void;
49
+ writeJsonFile(filePath: string, json: object): void;
50
+ /**
51
+ * Adds a utf8 file to `packageName` with `relativePath` to the package directory.
52
+ *
53
+ * @param packageName The child package to add to or undefined for root package
54
+ * @param filePath The path of the file to be written. Will be prepended with package dir
55
+ * @param contents the contents to be written (as utf8)
56
+ */
57
+ writeFile(filePath: string, contents: string): void;
58
+ getFilePath(filePath: string): string;
59
+ readFile(filePath: string): string;
60
+ failureMatcher(opts: {
61
+ file: string;
62
+ message: string;
63
+ hasFixer: boolean;
64
+ }): {
65
+ fixer?: {
66
+ asymmetricMatch(other: unknown): boolean;
67
+ toString(): string;
68
+ getExpectedType?(): string;
69
+ toAsymmetricMatcher?(): string;
70
+ } | undefined;
71
+ file: string;
72
+ message: string;
73
+ };
74
+ }
75
+ export type AddErrorSpy = jest.SpiedFunction<(options: AddErrorOptions) => void>;
76
+ export declare const HOST_FACTORIES: Array<{
77
+ name: string;
78
+ make: () => Host;
79
+ }>;
80
+ export {};
81
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/__tests__/utils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAEzE,OAAO,EAAe,IAAI,EAAc,MAAM,qBAAqB,CAAC;AACpE,OAAO,EAAU,IAAI,EAAE,MAAM,eAAe,CAAC;AAI7C,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,UAExC;AAED,UAAU,oBAAoB;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,wBAAsB,sBAAsB,CAAC,WAAW,EAAE,oBAAoB,oCAuB7E;AAED,UAAU,wBAAyB,SAAQ,QAAQ,CAAC,oBAAoB,CAAC;IACvE,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAC/B;;;;;;OAMG;IACH,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpD,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpD,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/C,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACtC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAEnC;;;OAGG;IACH,cAAc,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,OAAO,CAAA;KAAE,GAAG,GAAG,CAAC;IAEhF,QAAQ,CAAC,OAAO,EAAE,gBAAgB,CAAC;CACpC;AAED,cAAM,uBAAwB,YAAW,gBAAgB;IAErD,OAAO,CAAC,IAAI;aACI,OAAO,EAAE,gBAAgB;gBADjC,IAAI,EAAE,wBAAwB,EACtB,OAAO,EAAE,gBAAgB;IAG3C,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAOvC,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;IAI5C;;;;;;OAMG;IACH,SAAS,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAM5C,WAAW,CAAC,QAAQ,EAAE,MAAM;IAI5B,QAAQ,CAAC,QAAQ,EAAE,MAAM;IAIzB,cAAc,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;CAO1E;AAED,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,OAAO,EAAE,eAAe,KAAK,IAAI,CAAC,CAAC;AAEjF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,IAAI,CAAA;CAAE,CAGpE,CAAC"}
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ export declare const alphabeticalDependencies: (ruleEntry: import("@monorepolint/config").RuleEntry<undefined>) => import("@monorepolint/config").RuleModule<undefined>;
8
+ //# sourceMappingURL=alphabeticalDependencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alphabeticalDependencies.d.ts","sourceRoot":"","sources":["../../src/alphabeticalDependencies.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,eAAO,MAAM,wBAAwB,0HAQnC,CAAC"}
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ export declare const alphabeticalScripts: (ruleEntry: import("@monorepolint/config").RuleEntry<undefined>) => import("@monorepolint/config").RuleModule<undefined>;
8
+ //# sourceMappingURL=alphabeticalScripts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alphabeticalScripts.d.ts","sourceRoot":"","sources":["../../src/alphabeticalScripts.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,eAAO,MAAM,mBAAmB,0HAM9B,CAAC"}
@@ -0,0 +1,66 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ import * as r from "runtypes";
8
+ declare const Options: r.Union<[r.Record<{
9
+ bannedDependencies: r.Union<[r.Array<r.String, false>, r.Record<{
10
+ glob: r.Optional<r.Array<r.String, false>>;
11
+ exact: r.Optional<r.Array<r.String, false>>;
12
+ }, false>]>;
13
+ bannedTransitiveDependencies: r.Optional<r.Literal<undefined>>;
14
+ }, false>, r.Record<{
15
+ bannedDependencies: r.Optional<r.Union<[r.Array<r.String, false>, r.Record<{
16
+ glob: r.Optional<r.Array<r.String, false>>;
17
+ exact: r.Optional<r.Array<r.String, false>>;
18
+ }, false>]>>;
19
+ bannedTransitiveDependencies: r.Array<r.String, false>;
20
+ }, false>, r.Record<{
21
+ bannedDependencies: r.Optional<r.Union<[r.Array<r.String, false>, r.Record<{
22
+ glob: r.Optional<r.Array<r.String, false>>;
23
+ exact: r.Optional<r.Array<r.String, false>>;
24
+ }, false>]>>;
25
+ bannedTransitiveDependencies: r.Optional<r.Array<r.String, false>>;
26
+ }, false>]>;
27
+ export type Options = r.Static<typeof Options>;
28
+ export declare const bannedDependencies: (ruleEntry: import("@monorepolint/config").RuleEntry<{
29
+ bannedDependencies: string[] | {
30
+ glob?: string[] | undefined;
31
+ exact?: string[] | undefined;
32
+ };
33
+ bannedTransitiveDependencies?: undefined;
34
+ } | {
35
+ bannedTransitiveDependencies: string[];
36
+ bannedDependencies?: string[] | {
37
+ glob?: string[] | undefined;
38
+ exact?: string[] | undefined;
39
+ } | undefined;
40
+ } | {
41
+ bannedDependencies?: string[] | {
42
+ glob?: string[] | undefined;
43
+ exact?: string[] | undefined;
44
+ } | undefined;
45
+ bannedTransitiveDependencies?: string[] | undefined;
46
+ }>) => import("@monorepolint/config").RuleModule<{
47
+ bannedDependencies: string[] | {
48
+ glob?: string[] | undefined;
49
+ exact?: string[] | undefined;
50
+ };
51
+ bannedTransitiveDependencies?: undefined;
52
+ } | {
53
+ bannedTransitiveDependencies: string[];
54
+ bannedDependencies?: string[] | {
55
+ glob?: string[] | undefined;
56
+ exact?: string[] | undefined;
57
+ } | undefined;
58
+ } | {
59
+ bannedDependencies?: string[] | {
60
+ glob?: string[] | undefined;
61
+ exact?: string[] | undefined;
62
+ } | undefined;
63
+ bannedTransitiveDependencies?: string[] | undefined;
64
+ }>;
65
+ export {};
66
+ //# sourceMappingURL=bannedDependencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bannedDependencies.d.ts","sourceRoot":"","sources":["../../src/bannedDependencies.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAa9B,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;WAeZ,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,OAAO,CAAC,CAAC;AAU/C,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8D7B,CAAC"}
@@ -0,0 +1,18 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ import * as r from "runtypes";
8
+ declare const Options: r.Union<[r.Record<{
9
+ ignoredDependencies: r.Union<[r.Array<r.String, false>, r.Literal<undefined>]>;
10
+ }, false>, r.Literal<undefined>]>;
11
+ export type Options = r.Static<typeof Options>;
12
+ export declare const consistentDependencies: (ruleEntry: import("@monorepolint/config").RuleEntry<{
13
+ ignoredDependencies: string[] | undefined;
14
+ } | undefined>) => import("@monorepolint/config").RuleModule<{
15
+ ignoredDependencies: string[] | undefined;
16
+ } | undefined>;
17
+ export {};
18
+ //# sourceMappingURL=consistentDependencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consistentDependencies.d.ts","sourceRoot":"","sources":["../../src/consistentDependencies.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAE9B,QAAA,MAAM,OAAO;;iCAIK,CAAC;AACnB,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,OAAO,CAAC,CAAC;AAI/C,eAAO,MAAM,sBAAsB;;;;cAQjC,CAAC"}
@@ -0,0 +1,25 @@
1
+ /*!
2
+ * Copyright 2020 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ import * as r from "runtypes";
8
+ export declare const Options: r.Record<{
9
+ matchDependencyVersions: r.Dictionary<r.Union<[r.String, r.Array<r.String, false>]>, string | number | symbol>;
10
+ }, false>;
11
+ export type Options = r.Static<typeof Options>;
12
+ export declare const consistentVersions: (ruleEntry: import("@monorepolint/config").RuleEntry<{
13
+ matchDependencyVersions: {
14
+ [x: string]: string | string[];
15
+ [x: number]: string | string[];
16
+ [x: symbol]: string | string[];
17
+ };
18
+ }>) => import("@monorepolint/config").RuleModule<{
19
+ matchDependencyVersions: {
20
+ [x: string]: string | string[];
21
+ [x: number]: string | string[];
22
+ [x: symbol]: string | string[];
23
+ };
24
+ }>;
25
+ //# sourceMappingURL=consistentVersions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consistentVersions.d.ts","sourceRoot":"","sources":["../../src/consistentVersions.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,CAAC,MAAM,UAAU,CAAC;AAG9B,eAAO,MAAM,OAAO;;SAElB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,OAAO,CAAC,CAAC;AAE/C,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAC"}
@@ -0,0 +1,39 @@
1
+ /*!
2
+ * Copyright 2023 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ import { Context } from "@monorepolint/config";
8
+ export declare const fileContents: (ruleEntry: import("@monorepolint/config").RuleEntry<{
9
+ file: string;
10
+ generator: (context: Context) => string | Promise<string>;
11
+ template?: undefined;
12
+ templateFile?: undefined;
13
+ } | {
14
+ file: string;
15
+ template: string;
16
+ generator?: undefined;
17
+ templateFile?: undefined;
18
+ } | {
19
+ file: string;
20
+ templateFile: string;
21
+ generator?: undefined;
22
+ template?: undefined;
23
+ }>) => import("@monorepolint/config").RuleModule<{
24
+ file: string;
25
+ generator: (context: Context) => string | Promise<string>;
26
+ template?: undefined;
27
+ templateFile?: undefined;
28
+ } | {
29
+ file: string;
30
+ template: string;
31
+ generator?: undefined;
32
+ templateFile?: undefined;
33
+ } | {
34
+ file: string;
35
+ templateFile: string;
36
+ generator?: undefined;
37
+ template?: undefined;
38
+ }>;
39
+ //# sourceMappingURL=fileContents.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fileContents.d.ts","sourceRoot":"","sources":["../../src/fileContents.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AA8B/C,eAAO,MAAM,YAAY;;yBAtB+B,OAAO,KAAK,MAAM,GAAG,QAAQ,MAAM,CAAC;;;;;;;;;;;;;;;yBAApC,OAAO,KAAK,MAAM,GAAG,QAAQ,MAAM,CAAC;;;;;;;;;;;;;EA+C1F,CAAC"}
@@ -0,0 +1,20 @@
1
+ /*!
2
+ * Copyright 2019 Palantir Technologies, Inc.
3
+ *
4
+ * Licensed under the MIT license. See LICENSE file in the project root for details.
5
+ *
6
+ */
7
+ export { alphabeticalDependencies } from "./alphabeticalDependencies.js";
8
+ export { alphabeticalScripts } from "./alphabeticalScripts.js";
9
+ export { bannedDependencies } from "./bannedDependencies.js";
10
+ export { consistentDependencies } from "./consistentDependencies.js";
11
+ export { consistentVersions } from "./consistentVersions.js";
12
+ export { fileContents } from "./fileContents.js";
13
+ export { mustSatisfyPeerDependencies } from "./mustSatisfyPeerDependencies.js";
14
+ export { packageOrder } from "./packageOrder.js";
15
+ export { packageEntry } from "./packageEntry.js";
16
+ export { packageScript } from "./packageScript.js";
17
+ export { standardTsconfig } from "./standardTsconfig.js";
18
+ export { nestedWorkspaces } from "./nestedWorkspaces.js";
19
+ export { requireDependency } from "./requireDependency.js";
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC"}