Skip to content

Commit

Permalink
Attempt to support importmap dynamic builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hopsoft committed Feb 11, 2024
1 parent cb42fff commit 8d47f2a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,8 @@ fly deploy
1. Run `yarn upgrade-interactive` and `bundle update` to pick up the latest dependencies
1. Bump version number at `lib/turbo_boost-streams/version.rb`. Pre-release versions use `.preN`
1. Bump version number at `package.json` _(make sure it matches)_. Pre-release versions use `-preN`
1. Run `yarn build:all`
1. Run `rake build`
1. Run `yarn build`
1. Commit and push any changes to GitHub
1. Run `rake release`
1. Run `yarn npm publish --access public`
Expand Down
1 change: 1 addition & 0 deletions bin/docker/run/local
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ fi
# ============================================================================================================
rm -rf /app/node_modules
ln -s /mnt/external/node_modules /app/node_modules
yarn set version stable
yarn
bundle

Expand Down
2 changes: 1 addition & 1 deletion lib/turbo_boost/streams/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module TurboBoost
module Streams
VERSION = "0.1.4"
VERSION = "0.1.5"
end
end
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo-boost/streams",
"version": "0.1.4",
"version": "0.1.5",
"description": "Take full control of the DOM with Turbo Streams",
"keywords": [
"hotwire",
Expand Down Expand Up @@ -37,8 +37,7 @@
"tailwindcss": "^3.4.1"
},
"scripts": {
"build": "bin/standardize && node bin/build.mjs",
"build:all": "bin/standardize && node bin/build.mjs && rake build",
"build": "node bin/build.mjs",
"build:watch": "yarn build --watch"
},
"packageManager": "yarn@4.1.0"
Expand Down

0 comments on commit 8d47f2a

Please sign in to comment.