Skip to content
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

Release: v0.42.0 #338

Merged
merged 7 commits into from
Apr 6, 2024
Merged
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
5 changes: 3 additions & 2 deletions .studiorc
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
# install dependencies
echo
echo "--> Installing project development dependencies..."
# use jarvus/node20 build until merged: https://github.com/habitat-sh/core-plans/pull/4708
hab pkg install \
jarvus/mkdocs-studio \
jarvus/studio-toolkit \
core/node16 \
jarvus/node20 \
core/git

hab pkg binlink core/node16 core/git
hab pkg binlink jarvus/node20 core/git
hab pkg binlink core/coreutils env --dest /usr/bin


Expand Down
2 changes: 1 addition & 1 deletion github-actions/projector/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ outputs:
commit:
description: 'Commit hash for last projection (if commit-to is configured)'
runs:
using: 'node16'
using: 'node20'
main: 'index.js'
post: 'post.js'
41 changes: 28 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
"async-exit-hook": "^2.0.1",
"axios": "^1.3.3",
"chokidar": "^3.5.3",
"debounce": "^1.2.1",
"debounce": "^2.0.0",
"dockerode": "^4.0.2",
"fb-watchman": "^2.0.1",
"git-client": "^1.8.3",
"hab-client": "^1.1.3",
"handlebars": "^4.7.6",
"minimatch": "^7.4.2",
"minimatch": "^9.0.4",
"mz": "^2.4.0",
"mz-modules": "^2.1.0",
"object-squish": "^1.1.0",
"parse-url": "^8.1.0",
"parse-url": "^9.2.0",
"shell-quote-word": "^1.0.1",
"sort-keys": "^4.2.0",
"toposort": "^2.0.2",
Expand Down
4 changes: 2 additions & 2 deletions plan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pkg_build_deps=(

pkg_deps=(
core/git
core/node16
"jarvus/node20" # use jarvus build until merged: https://github.com/habitat-sh/core-plans/pull/4708
core/hab/0.79.0 # last version before new license
)

Expand Down Expand Up @@ -39,7 +39,7 @@ do_build() {
npm install

build_line "Fixing interpreter"
sed -e "s#\#\!/usr/bin/env node#\#\!$(pkg_path_for node16)/bin/node#" --in-place "node-bin/cli.js"
sed -e "s#\#\!/usr/bin/env node#\#\!$(pkg_path_for node20)/bin/node#" --in-place "node-bin/cli.js"

popd > /dev/null
}
Expand Down
Loading