@tuwaio/create-cosmos-playground 0.0.4 → 0.0.6
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.
- package/CHANGELOG.md +14 -0
- package/dist/index.js +1 -2
- package/package.json +1 -1
- package/src/index.ts +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.6](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.5...create-cosmos-playground-v0.0.6) (2025-10-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* nova connect initial ([#6](https://github.com/TuwaIO/cosmos-playground/issues/6)) ([cf86b90](https://github.com/TuwaIO/cosmos-playground/commit/cf86b908f23f6436af391945e1aad4c8500eb7b1))
|
|
9
|
+
|
|
10
|
+
## [0.0.5](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.4...create-cosmos-playground-v0.0.5) (2025-09-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* added nextjs-all example ([bd75204](https://github.com/TuwaIO/cosmos-playground/commit/bd752041ca1619087b23dc9042bddc6c8e1d4720))
|
|
16
|
+
|
|
3
17
|
## [0.0.4](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.3...create-cosmos-playground-v0.0.4) (2025-09-19)
|
|
4
18
|
|
|
5
19
|
|
package/dist/index.js
CHANGED
|
@@ -12,12 +12,11 @@ const REPO_URL = 'TuwaIO/cosmos-playground/examples';
|
|
|
12
12
|
async function main() {
|
|
13
13
|
console.log('✨ Creating a new Cosmos Playground project...');
|
|
14
14
|
const availableTemplates = [
|
|
15
|
+
'nextjs-all',
|
|
15
16
|
'nextjs-connectkit',
|
|
16
17
|
'nextjs-dynamic',
|
|
17
|
-
'nextjs-reown',
|
|
18
18
|
'nextjs-rainbowkit',
|
|
19
19
|
'nextjs-solana',
|
|
20
|
-
'nextjs-web3auth',
|
|
21
20
|
'vite-rainbowkit',
|
|
22
21
|
];
|
|
23
22
|
const templateResponse = await (0, prompts_1.default)({
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -11,12 +11,11 @@ async function main() {
|
|
|
11
11
|
console.log('✨ Creating a new Cosmos Playground project...');
|
|
12
12
|
|
|
13
13
|
const availableTemplates = [
|
|
14
|
+
'nextjs-all',
|
|
14
15
|
'nextjs-connectkit',
|
|
15
16
|
'nextjs-dynamic',
|
|
16
|
-
'nextjs-reown',
|
|
17
17
|
'nextjs-rainbowkit',
|
|
18
18
|
'nextjs-solana',
|
|
19
|
-
'nextjs-web3auth',
|
|
20
19
|
'vite-rainbowkit',
|
|
21
20
|
];
|
|
22
21
|
|