Skip to content

Commit

Permalink
fix(file-system): Resolved issue with bad file imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Dec 9, 2023
1 parent 3be2b4a commit 716b412
Show file tree
Hide file tree
Showing 10 changed files with 3,616 additions and 3,805 deletions.
382 changes: 100 additions & 282 deletions docs/api-reports/packages/errors/api-report.md

Large diffs are not rendered by default.

2,410 changes: 601 additions & 1,809 deletions docs/api-reports/packages/errors/documents-model.api.json

Large diffs are not rendered by default.

479 changes: 215 additions & 264 deletions docs/api-reports/packages/logging/api-report.md

Large diffs are not rendered by default.

3,999 changes: 2,629 additions & 1,370 deletions docs/api-reports/packages/logging/documents-model.api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"@swc/helpers": "^0.5.3",
"@types/jest": "^29.5.11",
"@types/node": "20.9.0",
"@types/react": "^18.2.42",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"eslint": "^8.55.0",
"husky": "^8.0.3",
Expand Down
11 changes: 1 addition & 10 deletions packages/cli/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,7 @@
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/cli/**/*.ts",
"{projectRoot}/package.json"
]
}
},
"lint": {},
"test": {}
}
}
11 changes: 1 addition & 10 deletions packages/file-system/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,7 @@
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/file-system/**/*.ts",
"packages/file-system/package.json"
]
}
},
"lint": {},
"test": {}
}
}
1 change: 0 additions & 1 deletion packages/file-system/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* @packageDocumentation
*/

export * from "../../cli/src/utilities";
export * from "./errors";
export * from "./files";
export * from "./package-management";
2 changes: 1 addition & 1 deletion packages/file-system/src/package-management/package-fns.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { execute } from "@storm-stack/cli";
import { basename, resolve } from "path";
import { execute } from "../../../cli/src/utilities/execute";
import { exists } from "../files/exists";
import { joinPaths } from "../files/join-paths";

Expand Down

0 comments on commit 716b412

Please sign in to comment.