Releases: nvh95/jest-preview
Releases · nvh95/jest-preview
v0.2.0: The Game Changer
What's Changed
Full Changelog: v0.1.7...v0.2.0
v0.1.7
What's Changed
- docs: Update intro.md by @minhmo1620 in #91
- Replace README content with links to website by @thanhsonng in #93
- Rename cache folder + Use node 16 + Support more Chromium-based browsers on Mac OSX by @nvh95 in #95
- Fix space in folder by @nvh95 in #97
New Contributors
- @minhmo1620 made their first contribution in #91
Full Changelog: v0.1.6...v0.1.7
v0.1.6: thank you, next.js
What's Changed
New Contributors
- @thanhsonng made their first contribution in #60
Full Changelog: v0.1.5...v0.1.6
v0.1.5: Saas Wars, Dart Vader, I'm your father
What's Changed
- feat: Support Dart SASS by @ntt261298 in #52
- feat: support non-english characters and responsive design by @nottyo in #56
- chore: Remind users to clearCache after config by @nvh95 in #58
- feat: Remove package-lock.json from examples by @nvh95 in #61
- feat: Add docs using docusaurus by @nvh95 in #59
New Contributors
Full Changelog: v0.1.4...v0.1.5
v0.1.4: Cache Invalidation is hard. Really hard!
Fixes
- Fix:
jest --clearCache
might break user's installation flow sincejest
might be installed afterjest-preview
.
v0.1.3: You can see ALL your images + Solve one of two hard things in Computer Science: CACHE INVALIDATION
Features
- Support serving files from Public folder.
- Clear Jest cache after installation.
Fixes
- Update rollup to:
- Terser
- Transpile to ES2019 (e.g: optional chaining)
Chores
- Export
debug
as named also.
v0.1.2: DCY - Don't Config Yourself
Features
- Add pre-configured transformers, so users can integrate
jest-preview
to their projects easier.jest-preview/transforms/css
jest-preview/transforms/file
jest-preview/transforms/fileCRA
v0.1.1: Brace yourself! CSS Modules is coming to town!
Features
- Support CSS Modules #40
- Caveat: Support CSS Modules for CRA in the next version.
v0.1.0: Hooray, API changed: `preview.debug()`
Features
- [BREAKING CHANGES] Simplify usage of the core function of jest-preview:
preview(htmlElement)
topreview.debug()
. - Users do not need to pass any argument to
preview.debug()
, the default isdocument.body
which is the whole page (how authors expect users to use jest-preview). - Add
title
andfavicon.ico
for Dashboard
Fixes
- Fix
externalCss
get cached
v0.0.3: Do not repeat yourself! + CRA, you are special!
Features
- Rewrite transforms. Do not need to copy assets to cache folder.
- Add
processFileCRA
for CRA file transform. - [BREAKING CHANGES for CRA users] CRA users need to update
fileTransform.js
to useprocessFileCRA
. See more at CRA README.md
Chores
- Simplify the usage in docs and examples:
preview(render(<App />).container)
=>preview(document.body)
.