Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## packer 0.1.2.9000
## packer 0.1.3.9000

- Fixed [NOTE](https://cran-archive.r-project.org/web/checks/2026/2026-03-21_check_results_packer.html) from CRAN regarding NEWS.md subsection titles and other notes related to temp files in testhat tests.

## packer 0.1.3

- More robust check for appropriate engine in `engine_which`.
- Added roclets to bundle when documenting (prod & dev).
Expand Down Expand Up @@ -85,7 +89,7 @@ for TypeScript integration, see [documentation](https://packer.john-coene.com/#/

## packer 0.0.5

### Changes
Changes:

- Added `scaffold_rmd` to scaffold R markdown projects.
- When a test for a specific loader exist the `use` is now appended to existing entry.
Expand All @@ -95,27 +99,27 @@ for TypeScript integration, see [documentation](https://packer.john-coene.com/#/

## packer 0.0.3

### Changes
Changes:

- Loaders `use_loader_*` now accept `test` argument.
- Add `use_loader_rule` to allow adding loaders yet implemented.
- Add `use_loader_file` to allow importing images.
- Removed broken `use_loader_vue_style`, `apply_vue` now uses `use_loader_css` which works.
- Added `output_path` argument to `add_plugin_html`.

### Bug fixes
Bug fixes:

- Fixed import of external libraries (HTMLwidgets, Shiny, and jQuery).
- Fixed name check on scaffolds, e.g.: `scaffold_input("no space allowed")` would not fail before.

### Internals
Internals:

- Reworked internals of `use_loader_*` functions.
- Refactored internals of `scaffold_input`, `scaffold_output`, and `scaffold_extension`.

## packer 0.0.2

### Changes
Changes:

- Added `apply_react` adds the relevant (babel) loader, installs dependencies, and creates, or updates, or replaces the `srcjs/index.js` file.
- Added `react` argument to `scaffold_golem` to include react in a golem scaffold, run `apply_react` under the hood.
Expand Down
8 changes: 7 additions & 1 deletion tests/fns.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Sys.setenv(
NODE_DISABLE_COMPILE_CACHE = "1",
DISABLE_V8_COMPILE_CACHE = "1"
)

create_tmp_package <- function() {
tmp <- tempdir()
# make sure it's empty
Expand All @@ -22,7 +27,8 @@ create_tmp_golem <- function() {
golem::create_golem(
tmp,
open = FALSE,
check_name = FALSE
check_name = FALSE,
overwrite = TRUE
)
)
return(tmp)
Expand Down
19 changes: 0 additions & 19 deletions tests/testthat/test-bare

This file was deleted.