Skip to content

Commit c187ca4

Browse files
committed
fix package name, author, license, and prebuild deprecation.
1 parent dfac6e1 commit c187ca4

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "cssource-installer",
3-
"version": "1.0.0",
4-
"description": "A simple utility tool to install CSSource textures into Garrys Mod from an official steam source.",
2+
"name": "css-texture-installer-plus",
3+
"version": "1.2.0",
4+
"description": "An easy to use, straight forward Counter Strike: Source texture installer for Garry's Mod.",
55
"main": "main.js",
66
"scripts": {
77
"start": "node main.js",
8-
"build": "node prebuild.js && pkg -t node12-win-x64 main.js --config package.json --out-path bin/ && node postbuild.js",
8+
"build": "node prebuild.js && npx pkg -t node12-win-x64 main.js --config package.json --out-path bin/ && node postbuild.js",
99
"test": "echo \"Error: no test specified\" && exit 1"
1010
},
11-
"author": "ITS_N1GH7OWL",
12-
"license": "ISC",
11+
"author": "zulc22",
12+
"license": "GPL-3.0-or-later",
1313
"dependencies": {
1414
"axios": "^0.21.1",
1515
"chalk": "^4.0.0",

prebuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
const fs = require('fs')
2-
fs.rmdirSync("bin", { recursive: true })
2+
fs.rmSync("bin", { recursive: true })

0 commit comments

Comments
 (0)