Skip to content

Commit

Permalink
fix package name, author, license, and prebuild deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
zulc22 committed Jul 19, 2022
1 parent dfac6e1 commit c187ca4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "cssource-installer",
"version": "1.0.0",
"description": "A simple utility tool to install CSSource textures into Garrys Mod from an official steam source.",
"name": "css-texture-installer-plus",
"version": "1.2.0",
"description": "An easy to use, straight forward Counter Strike: Source texture installer for Garry's Mod.",
"main": "main.js",
"scripts": {
"start": "node main.js",
"build": "node prebuild.js && pkg -t node12-win-x64 main.js --config package.json --out-path bin/ && node postbuild.js",
"build": "node prebuild.js && npx pkg -t node12-win-x64 main.js --config package.json --out-path bin/ && node postbuild.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "ITS_N1GH7OWL",
"license": "ISC",
"author": "zulc22",
"license": "GPL-3.0-or-later",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion prebuild.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const fs = require('fs')
fs.rmdirSync("bin", { recursive: true })
fs.rmSync("bin", { recursive: true })

0 comments on commit c187ca4

Please sign in to comment.