Skip to content

Commit

Permalink
Merge pull request #522 from Appsilon/kamil-upgrade-node-modules
Browse files Browse the repository at this point in the history
Upgrade node modules
  • Loading branch information
kamilzyla authored Jan 5, 2024
2 parents 958fcbb + d957425 commit 6926a37
Show file tree
Hide file tree
Showing 11 changed files with 4,701 additions and 4,242 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rhino
Title: A Framework for Enterprise Shiny Applications
Version: 1.5.0.9002
Version: 1.5.0.9003
Authors@R:
c(
person("Kamil", "Żyła", role = c("aut", "cre"), email = "[email protected]"),
Expand Down
13 changes: 10 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# rhino (development)

1. Cypress updated to version 13.
2. `pkg_install` supports installation from local sources, GitHub, and Bioconductor.
3. Update Rhino CI (use latest versions and make better use of actions).
1. `pkg_install` supports installation from local sources, GitHub, and Bioconductor.
2. Improve Rhino CI (use latest versions and make better use of actions).
3. Upgrade tools based on Node.js:
* `test_e2e()` now uses `cypress` 13.6
* `build_js()` now uses `webpack` 5.89
* `build_sass()` now uses `sass` 1.69
* `lint_js()` now uses `eslint` 8.56
* `lint_sass()` now uses `stylelint` 14.16 (the last major version supporting stylistic rules)
* Upgrade all remaining Node.js dependencies to latest versions and fix vulnerabilities.
* The minimum supported Node.js version is now 16.

# [rhino 1.5.0](https://github.com/Appsilon/rhino/releases/tag/v1.5.0)

Expand Down
11 changes: 8 additions & 3 deletions inst/templates/node/dot.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "stylelint-config-standard",
"plugins": ["stylelint-scss"],
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"no-empty-source": null,
"scss/at-rule-no-unknown": true
"scss/at-rule-no-unknown": true,
"selector-id-pattern": [
"^([a-z][a-z0-9]*)([-_][a-z0-9]+)*$",
{
"message": "Expected ID selector to be kebab-snake_case"
}
]
}
}
Loading

0 comments on commit 6926a37

Please sign in to comment.