(change): use node_modules/.cache/... as cacheRoot#329
Merged
jaredpalmer merged 1 commit intojaredpalmer:masterfrom Dec 3, 2019
Merged
(change): use node_modules/.cache/... as cacheRoot#329jaredpalmer merged 1 commit intojaredpalmer:masterfrom
jaredpalmer merged 1 commit intojaredpalmer:masterfrom
Conversation
jaredpalmer
approved these changes
Nov 14, 2019
4d3a253 to
e878a67
Compare
Collaborator
Author
|
Tested this with my fork and it creates the new directories successfully and starts caching there with no problems (as far as I can tell at least) 👍 |
- instead of outputting these to app root and requiring users to
gitignore these directories, just output to node_modules/.cache/
- rollup-plugin-typescript2 is the default cache directory, so this
initially appended _${opts.format} to it
- upon code review, changed it to tsdx/${opts.format}/
- babel-loader similarly uses node_modules/.cache/babel-loader
as its default cache directory and does not allow users to
change it
- parcel uses node_modules/.cache/parcel too
- fuse-box uses node_modules/.fusebox
e878a67 to
daf784e
Compare
This was referenced Dec 11, 2019
sebald
added a commit
to sebald/tsdx
that referenced
this pull request
Dec 19, 2019
* master: (26 commits) (deps/lint): upgrade @typescript-eslint to support ?. and ?? (jaredpalmer#377) (ci): add a lint job so PRs will require passing lint (jaredpalmer#378) (clean): remove .rts_cache_* from storybook gitignore (jaredpalmer#375) Add optional chaining and nullish coalescing operators support (jaredpalmer#370) Added Storybook template (jaredpalmer#318) (fix/ci): GitHub Actions should run on PRs as well (fix/format): formatting of jaredpalmer#366 didn't pass lint Add prepare script to generated project (jaredpalmer#334) default jest to watch mode when not in CI (jaredpalmer#366) (fix): respect tsconfig esModuleInterop flag (jaredpalmer#327) fix: minor typo update rollup deps and plugins update to ts 3.7 Remove unnecessary yarn install command in GH action update README.md update README.md Use node_modules/.cache/... as cacheRoot (jaredpalmer#329) fix(lint): Only default to src test if they exist (jaredpalmer#344) Fix error when providing babel/preset-env without options (jaredpalmer#350) Replaced some sync methods for their async version ...
This was referenced Mar 17, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
gitignore these directories, just output to node_modules/.cache/
initially appended _${opts.format} to it
as its default cache directory and does not allow users to
change it
[1]: https://github.com/ezolenko/rollup-plugin-typescript2#plugin-options >
cacheRoot[2]: https://github.com/babel/babel-loader#options >
cacheDirectory[3]: https://github.com/parcel-bundler/parcel#caching
[4]: https://github.com/fuse-box/fuse-box/blob/master/docs/getting-started/get-started.md#caching
Fixes #328 . Not sure if this change makes sense as, per the issue, I don't know / couldn't find the rationale for using the app root
.rts2_cache_*directories. I'm also not sure if just removing thecacheRootoption and using the default may cause issues -- I'm assuming the${opts.format}is there because it does, so I left it in while moving the cache intonode_modules.Feel free to close if this doesn't make sense, #328 is more of a question, but I figure I might as well make the small changes I suggested for it in case it does.