-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix: composable の構成を変更 (optional api サポートと vue2 向け) * fix: 微修正 * fix: 微調整 * fix: 微調整 * fix: 微調整 * fix: 微調整 * update: dependencies * fix: structure * fix: support vue2, vue-router4 * chore: ついで * fix: script * fix: nuxt 配下の playground を移設 * feat: [wip] 一旦 enclosure-nuxt で nuxt2 向けのビルドができるところまでは対応 * fix: 構成変更 * fix: vue2 の playground を頑張って作ってみたけど、 packages 周りでしんどくなったところまで * fix: monorepo の分離 * fix: 構造変更と型安全にならない問題の対応 * feat: add example vue2.6 * feat: example/insider-vue2* 以外は動いた * WIP * fix: example でデバッグしながらライブラリの出力をきれいにした * fix: enclosure-vue 2.7 で iframe に src が反映されない問題の対応 * fix: example の細かい対応漏れの修正 * fix: テスト用コンポーネントの更新と、見つかった細かい不具合の修正 * fix: layout 取得のテスト vue3 はできたが・・ vue2.7 x optionalがまだ * test: add typecheck test * fix: update yarn.lock * fix: update yarn.lock * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed actions * fix: failed typecheck * fix: types * fix: types * update misc * fix: failed tests * fix: syntax error * fix: min * versioning --------- Co-authored-by: mewton <[email protected]>
- Loading branch information
Showing
181 changed files
with
16,418 additions
and
10,282 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@passerelle/enclosure-vue": minor | ||
"@passerelle/insider-vue": minor | ||
--- | ||
|
||
feat: support-vue2.7+, fix main feature interfaces. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
--- | ||
"@passerelle/enclosure-nuxt": major | ||
"@passerelle/enclosure-vue": major | ||
"@passerelle/insider-nuxt": major | ||
"@passerelle/insider-vue": major | ||
"@passerelle/enclosure-vue": minor | ||
"@passerelle/insider-vue": minor | ||
--- | ||
|
||
feat: main feature for vue3, nuxt3 |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
nodeLinker: node-modules | ||
yarnPath: ../../.yarn/releases/yarn-3.6.3.cjs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" href="/favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<div id="app"/> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "example-enclosure-vue2", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite . --port 5173", | ||
"typecheck": "vue-tsc --noEmit --composite false" | ||
}, | ||
"devDependencies": { | ||
"@passerelle/enclosure-vue": "*", | ||
"@vue/tsconfig": "^0.4.0", | ||
"fixtures-enclosure": "*", | ||
"vite": "^4.3.0", | ||
"vite-plugin-vue2": "^2.0.3", | ||
"vue": "~2.7.0", | ||
"vue-router": "~3.6.5", | ||
"vue-template-compiler": "~2.7.0", | ||
"vue-tsc": "^1.6.5" | ||
}, | ||
"resolutions": { | ||
"@passerelle/enclosure-vue": "portal:../../packages/enclosure-vue", | ||
"fixtures-enclosure": "portal:../../fixtures/enclosure" | ||
} | ||
} |
Oops, something went wrong.