@xylabs/ts-scripts-yarn3 6.3.0 → 6.3.1
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 +3 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/cycle.mjs +3 -1
- package/dist/actions/package/cycle.mjs.map +1 -1
- package/dist/actions/package/index.mjs +3 -1
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/bin/package/cycle.mjs +3 -1
- package/dist/bin/package/cycle.mjs.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/actions/index.mjs
CHANGED
|
@@ -1764,7 +1764,7 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
|
|
|
1764
1764
|
ruleSet: {
|
|
1765
1765
|
forbidden: [
|
|
1766
1766
|
{
|
|
1767
|
-
name: "no-
|
|
1767
|
+
name: "no-circular",
|
|
1768
1768
|
severity: "error",
|
|
1769
1769
|
comment: "This dependency creates a circular reference",
|
|
1770
1770
|
from: {},
|
|
@@ -1774,6 +1774,7 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
|
|
|
1774
1774
|
}
|
|
1775
1775
|
]
|
|
1776
1776
|
},
|
|
1777
|
+
validate: true,
|
|
1777
1778
|
doNotFollow: {
|
|
1778
1779
|
path: "node_modules"
|
|
1779
1780
|
},
|
|
@@ -1782,6 +1783,7 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
|
|
|
1782
1783
|
outputType: verbose ? "text" : "err"
|
|
1783
1784
|
};
|
|
1784
1785
|
const target = `${pkg}/src`;
|
|
1786
|
+
console.log(`Checking for circular dependencies in ${target}...`);
|
|
1785
1787
|
const result = await cruise([
|
|
1786
1788
|
target
|
|
1787
1789
|
], cruiseOptions);
|