Skip to content

Commit

Permalink
Update examples version to v0.4.18 (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
chacha912 authored Apr 24, 2024
1 parent aa685c0 commit a4dc353
Show file tree
Hide file tree
Showing 12 changed files with 174 additions and 50 deletions.
1 change: 1 addition & 0 deletions examples/nextjs-scheduler/.env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
NEXT_PUBLIC_YORKIE_API_ADDR='https://api.yorkie.dev'
NEXT_PUBLIC_YORKIE_API_KEY='cedaovjuioqlk4pjqn6g'
NEXT_PUBLIC_BASE_PATH='/yorkie-js-sdk/examples/nextjs-scheduler'
5 changes: 3 additions & 2 deletions examples/nextjs-scheduler/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
const nextConfig = {
output: 'export',
distDir: 'dist',
basePath: '/yorkie-js-sdk/examples/nextjs-scheduler',
assetPrefix: '/yorkie-js-sdk/examples/nextjs-scheduler/',
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '',
reactStrictMode: false,
};

module.exports = nextConfig;
2 changes: 1 addition & 1 deletion examples/nextjs-scheduler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "18.2.0",
"react-calendar": "^4.6.0",
"react-dom": "18.2.0",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
},
"devDependencies": {
"@types/node": "20.4.2",
Expand Down
3 changes: 2 additions & 1 deletion examples/nextjs-scheduler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
".next/types/**/*.ts",
"dist/types/**/*.ts"
],
"exclude": [
"node_modules"
Expand Down
2 changes: 1 addition & 1 deletion examples/profile-stack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"vite": "^3.2.7"
},
"dependencies": {
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
}
}
2 changes: 1 addition & 1 deletion examples/react-tldraw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"unique-names-generator": "^4.7.1",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
},
"devDependencies": {
"@types/lodash": "^4.14.198",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-todomvc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"todomvc-app-css": "^2.4.2",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
},
"devDependencies": {
"@types/react": "^18.0.24",
Expand Down
2 changes: 1 addition & 1 deletion examples/simultaneous-cursors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
},
"devDependencies": {
"@types/react": "^18.0.37",
Expand Down
2 changes: 1 addition & 1 deletion examples/vanilla-codemirror6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.3.1",
"codemirror": "^6.0.1",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
}
}
2 changes: 1 addition & 1 deletion examples/vanilla-quill/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"quill": "^1.3.7",
"quill-cursors": "^4.0.0",
"quill-delta": "^5.0.0",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
}
}
2 changes: 1 addition & 1 deletion examples/vuejs-kanban/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"vue": "^3.2.41",
"yorkie-js-sdk": "^0.4.13"
"yorkie-js-sdk": "^0.4.18"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.2",
Expand Down
Loading

0 comments on commit a4dc353

Please sign in to comment.