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

Update compiler & deps #20

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"/examples/basic",
"/examples/with-router"
],
"node": "16"
"node": "18"
}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: CI
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8

- name: Install dependencies
run: pnpm install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ tsconfig-build.tsbuildinfo
out*
.husky
.DS_Store
.turbo
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ await componentTransitionsManager.unmount()

## <a name="Debug"></a>Debug

[@wbe/debug](https://github.com/willybrauner/debug) is used on this project. It
[@cher-ami/debug](https://github.com/willybrauner/debug) is used on this project. It
allows to easily get logs information on development and production modes.

- To use it, add this line in your browser console:
Expand Down Expand Up @@ -333,10 +333,10 @@ clear()
pnpm i
```

Start dev server for specific example
Start dev server for all examples

```shell
pnpm run dev:basic
pnpm run dev
```


Expand Down
22 changes: 9 additions & 13 deletions examples/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
{
"name": "basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"@cher-ami/transitions-manager": "latest",
"@wbe/debug": "^1.1.0",
"gsap": "^3.11.5",
"@cher-ami/debug": "^1.2.0",
"@cher-ami/transitions-manager": "^0.5.1",
"gsap": "^3.12.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"typescript": "^5.0.4",
"vite": "^4.2.1"
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}
Loading
Loading