-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: treat fist package.json as project root #1034
Conversation
@@ -0,0 +1,118 @@ | |||
import * as Path from 'path' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All build layout concerns are in own module now.
@@ -0,0 +1,32 @@ | |||
import { Either, right } from 'fp-ts/lib/Either' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All cache concerns are in own module now.
@@ -98,6 +98,26 @@ const ctx = TC.create( | |||
* Tests | |||
*/ | |||
|
|||
describe('projectRoot', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trying to group tests around major data properties.
projectRoot: ctx.fs.cwd(), | ||
}) | ||
}) | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These three new tests cover the new feature.
closes #1012
TODO