-
Notifications
You must be signed in to change notification settings - Fork 0
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.1.0-beta.10にマージ #196
Merged
YuukiToriyama
merged 45 commits into
release/v0.1.0-beta.10
from
feature/cargo-workspace/master
Mar 22, 2024
Merged
マルチモジュール化をrelease/v0.1.0-beta.10にマージ #196
YuukiToriyama
merged 45 commits into
release/v0.1.0-beta.10
from
feature/cargo-workspace/master
Mar 22, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ルートのCargo.tomlも同時に移動させた
`csv`はcoreからは必要なくなるので削除
そのままでは動かなかったため
…rs`の値をルートのCargo.tomlで管理するように変更
これがないとCIがこけるため
これがないとCIがこけるため
…re-module マルチモジュール化: `core`モジュールの作成
…`, `categories`もルートのCargo.tomlで管理するように変更
`core`モジュールと`wasm`モジュールで使用するバージョンを揃えたいため
…を削除し、処理をベタがきにした `core/lib.rs`から`Parser`を削除したいため
`core/lib.rs`から`Parser`を削除したいため
…move-usages-of-parser マルチモジュール化: `Parser`の使用箇所を削除
…rge/main_f145995 マルチモジュール化にmainブランチを取り込み
`core`から`wasm`に変更
`wasm-pack build`時にワーキングディレクトリにLICENSEがないとエラーが出るため
`wasm`モジュールを作成したことによるワークフローの修正
`wasm`モジュールを作成したことによるワークフローの修正
…x-workflows マルチモジュール化: `core`モジュールを作成したことに伴うGitHubActionsワークフローの修正
生成物に`README`を含めたいため
…re-include-license-and-readme マルチモジュール化: `core`にLICENSEを追加、Cargo.tomlにルートのREADMEを参照させる設定追加
生成物に`README`を含めたいため
- jobのworking-directoryを`core`から`wasm`に変更 - `wasm-pack build`によって生成されるpackage.jsonの`name`が`@toriyama/wasm`となっておりnpmjs.comに公開しているパッケージ名と異なってしまうため、jqコマンドを使用しpackage.jsonを修正するステップを追加
動作確認完了後にrevertする
This reverts commit 2755897.
- クレート名が変わっていることにより、`wasm-pack build`で生成されるjsファイルの名前が変わっていたため、`--out-name japanese_address_parser`を指定するように変更
動作確認完了後にrevertする
This reverts commit 0fa5b23.
…futures`を削除 もはや必要ではなくなったため
…sm-module マルチモジュール化: `wasm`モジュールを作成
…rge/main_005bbc2 マルチモジュール化にmainブランチを取り込み
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
変更点
その他