ruby_wasm 2.7.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/package.json CHANGED
@@ -6,9 +6,10 @@
6
6
  ],
7
7
  "devDependencies": {
8
8
  "@bytecodealliance/jco": "1.4.4",
9
- "@playwright/test": "^1.46.1",
9
+ "@playwright/test": "^1.49.0",
10
+ "@rollup/plugin-node-resolve": "^15.3.0",
10
11
  "@rollup/plugin-json": "^6.1.0",
11
- "rollup": "^4.22.5",
12
- "typedoc": "^0.26.7"
12
+ "rollup": "^4.28.0",
13
+ "typedoc": "^0.27.2"
13
14
  }
14
15
  }
data/rakelib/doc.rake CHANGED
@@ -16,7 +16,7 @@ desc "Generate TypeScript documentation"
16
16
  task :typedoc do
17
17
  sh "npm install"
18
18
  mkdir_p "html/npm/@ruby/wasm-wasi"
19
- sh "npx typedoc packages/npm-packages/ruby-wasm-wasi/src/index.ts --sort source-order --out html/npm/@ruby/wasm-wasi"
19
+ sh "npx typedoc --tsconfig packages/npm-packages/ruby-wasm-wasi/tsconfig.esm.json packages/npm-packages/ruby-wasm-wasi/src/index.ts --sort source-order --out html/npm/@ruby/wasm-wasi"
20
20
  end
21
21
 
22
22
  desc "Generate documentation site"
data/rakelib/version.rake CHANGED
@@ -55,4 +55,11 @@ end
55
55
  task :bump_dev_version do
56
56
  bump_dev_version_rb("lib/ruby_wasm/version.rb")
57
57
  bump_dev_version_rb("packages/gems/js/lib/js/version.rb")
58
+
59
+ # Update Gemfile.lock
60
+ NPM_PACKAGES.each do |pkg|
61
+ next unless pkg[:gemfile]
62
+ vendor_gem_cache(pkg)
63
+ sh "BUNDLE_GEMFILE=#{pkg[:gemfile]} bundle install"
64
+ end
58
65
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_wasm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
- original_platform: ''
7
6
  authors:
8
7
  - Yuta Saito
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-11-11 00:00:00.000000000 Z
10
+ date: 2025-01-23 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Ruby to WebAssembly toolkit. This gem takes Ruby code and Gemfile, and
14
13
  packages them with Ruby runtime into a WebAssembly binary.