Skip to content

Commit

Permalink
Move typescript to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Peterclark1996 committed Aug 31, 2024
1 parent 57de628 commit e36a15b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/create-s2ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-s2ts",
"version": "0.3.2",
"version": "0.3.3",
"description": "A tool to scaffold a s2ts project",
"main": "dist/index.js",
"bin": {
Expand Down
10 changes: 5 additions & 5 deletions packages/s2ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s2ts",
"version": "0.3.2",
"version": "0.3.3",
"description": "A tool to automatically compile counter-strike TS files (.vts files)",
"main": "dist/index.js",
"bin": {
Expand All @@ -23,7 +23,7 @@
],
"scripts": {
"build": "tsc --project tsconfig.build.json && ts-node ./src/postBuild.ts",
"start": "ts-node --transpile-only --project tsconfig.json src/cli.ts start",
"start": "ts-node --transpile-only --project tsconfig.json src/cli.ts start \"D:\\Steam\\steamapps\\common\\Counter-Strike Global Offensive\\content\\csgo_addons\\s2ts4\"",
"test": "jest --testMatch **/tests/**/*.test.ts",
"publish-npm": "npm run build && npm publish"
},
Expand All @@ -39,8 +39,7 @@
"jest": "^29.7.0",
"prettier": "^3.3.0",
"rollup": "^4.18.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
"ts-node": "^10.9.2"
},
"prettier": {
"trailingComma": "none",
Expand All @@ -50,6 +49,7 @@
"printWidth": 160
},
"dependencies": {
"chokidar": "^3.6.0"
"chokidar": "^3.6.0",
"typescript": "^5.5.2"
}
}

0 comments on commit e36a15b

Please sign in to comment.