Skip to content

Commit

Permalink
fix vite warning
Browse files Browse the repository at this point in the history
  • Loading branch information
serbanghita committed Oct 15, 2024
1 parent 95530e7 commit 795c745
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "echo \"Error: no build specified for assets yet.\"",
"test": "echo \"Error: no test specified for assets yet.\""
Expand Down
1 change: 1 addition & 0 deletions packages/bitmask/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "./src/bitmask.ts",
"type": "module",
"scripts": {
"build": "esbuild ./src/bitmask.ts --bundle --outfile=dist/bitmask.js",
"test": "vitest --watch=false",
Expand Down
1 change: 1 addition & 0 deletions packages/component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "./src/index.ts",
"type": "module",
"scripts": {
"build": "echo \"Error: no build specified for component yet.\"",
"test": "echo \"Error: no test specified for component yet.\"",
Expand Down
1 change: 1 addition & 0 deletions packages/ecs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"entity component system"
],
"main": "./src/index.ts",
"type": "module",
"version": "1.0.0",
"author": "Serban Ghita <[email protected]> (https://ghita.org)",
"license": "MIT",
Expand Down
4 changes: 3 additions & 1 deletion packages/fsm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
"name": "@serbanghita/fsm",
"description": "Finite State Machine that supports registering custom states, state priority and queued states.",
"version": "1.0.0",
"type": "module",
"main": "./src/index.ts",
"scripts": {
"build": "echo \"Error: no build specified for glhf-assets yet.\"",
"test": "jest"
"test": "echo \"Error: no test specified for assets yet.\""
},
"author": "Serban Ghita <[email protected]> (https://ghita.org)",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/fsm/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./State";
export * from "./StateManager";
1 change: 1 addition & 0 deletions packages/geometry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "./src/index.ts",
"type": "module",
"scripts": {
"build": "esbuild ./src/index.ts --bundle --outfile=dist/geometry.js",
"test": "echo \"Error: no test specified for assets yet.\"",
Expand Down
1 change: 1 addition & 0 deletions packages/input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"description": "Library for managing Input (Keyboard, Mouse, Controllers)",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"build": "echo \"Error: no build specified for input yet.\"",
"test": "echo \"Error: no test specified for input yet.\""
Expand Down
1 change: 1 addition & 0 deletions packages/matrix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "./src/index.ts",
"type": "module",
"scripts": {
"build": "esbuild ./src/index.ts --bundle --outfile=dist/matrix.js",
"test": "vitest --watch=false",
Expand Down
1 change: 1 addition & 0 deletions packages/renderer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"author": "Serban Ghita",
"license": "MIT",
"main": "./src/index.ts",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
Expand Down
1 change: 1 addition & 0 deletions packages/tiled/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"registry": "https://registry.npmjs.org/"
},
"main": "./src/index.ts",
"type": "module",
"scripts": {
"build": "esbuild ./src/index.ts --bundle --outfile=dist/tiled.js",
"test": "echo \"Error: no test specified for assets yet.\"",
Expand Down

0 comments on commit 795c745

Please sign in to comment.