Skip to content
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

feat: creates new playground with next.js #929

Merged
merged 28 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f58705a
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
0bc27e3
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
762d6ca
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
35c0ec4
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
2e5873a
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
d4b48c7
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
0128d36
Revert "feat: creates new playground with next.js"
kennethaasan Feb 29, 2024
d63f9ab
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
9f09665
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
a9db82b
feat: creates new playground with next.js
kennethaasan Feb 29, 2024
2151d45
fixes sonar
kennethaasan Feb 29, 2024
fc5c876
un-remove script
kennethaasan Feb 29, 2024
831ebb7
upgrades lerna and adds npm workspaces
kennethaasan Mar 1, 2024
5b78723
upgrades lerna and adds npm workspaces
kennethaasan Mar 1, 2024
0374801
fixes styled components errors
kennethaasan Mar 1, 2024
4ab8371
fixes tests
kennethaasan Mar 1, 2024
a6e2b2a
adds install:reactcomp script in playground
kennethaasan Mar 5, 2024
1e4f26c
un-delete lerna clean script
kennethaasan Mar 6, 2024
ea37dd1
handle react v18
kennethaasan Mar 11, 2024
3960136
handle react v18
kennethaasan Mar 11, 2024
03fbf3d
fix sq
kennethaasan Mar 11, 2024
6469938
Merge remote-tracking branch 'origin/master' into new-playground
kennethaasan Mar 11, 2024
39bfee6
bring prepare back
derberg Mar 13, 2024
4ea89d3
Merge branch 'master' into new-playground
derberg Mar 13, 2024
060e804
fixes web-component bundle
kennethaasan Mar 13, 2024
43922de
Merge remote-tracking branch 'origin/master' into new-playground
kennethaasan Mar 14, 2024
df107ff
Merge remote-tracking branch 'origin/master' into new-playground
kennethaasan Mar 14, 2024
570a4f1
use package lock version 3
kennethaasan Mar 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release-wc-and-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
working-directory: ./web-component
- name: Install dependencies
run: npm install
- name: Bundle
run: npm run bundle
working-directory: ./web-component
- name: Bump version in package.json
# There is no need to substract "v" from the tag as version script handles it
# When adding "bump:version" script in package.json, make sure no tags are added by default (--no-git-tag-version) as they are already added by release workflow
Expand Down Expand Up @@ -86,6 +89,6 @@ jobs:
with:
token: ${{ secrets.GH_TOKEN }}
branch: gh-pages
folder: playground/build
folder: playground/out
git-config-name: asyncapi-bot
git-config-email: [email protected]
git-config-email: [email protected]
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ npm-debug.log*
lerna-debug.log*
/**/*.tgz
/.github

playground/.next/
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"lerna": "3.15.0",
"version": "0.2.0",
"npmClient": "npm",
"packages": ["library", "playground", "web-component"],
"command": {
"publish": {
"message": "Bump version to %s"
}
}
},
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
4 changes: 2 additions & 2 deletions library/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
},
moduleNameMapper: {
'^nimma/legacy$':
'<rootDir>/../node_modules/nimma/dist/legacy/cjs/index.js',
'^nimma/(.*)': '<rootDir>/../node_modules/nimma/dist/cjs/$1',
'<rootDir>/../../node_modules/nimma/dist/legacy/cjs/index.js',
'^nimma/(.*)': '<rootDir>/../../node_modules/nimma/dist/cjs/$1',
},
};
Loading
Loading