Skip to content

Commit 39ce703

Browse files
committed
multiple projects
1 parent 9b694b4 commit 39ce703

14 files changed

+826
-738
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/node_modules/
2-
/public/*.js
3-
/public/*.js.map
1+
node_modules/
2+
*.js
3+
*.js.map

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
npm install && exec ./node_modules/.bin/tsc
1+
exec npm run build

lib/database.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = [
1+
export default [
22
{
33
id: "checkersBoard",
44
closetName: "Checkers Board",

lib/defaultRoom.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
roles: [
33
{ id: "red", name: "Red", },
44
{ id: "black", name: "Black", },

0 commit comments

Comments
 (0)