Skip to content

Commit

Permalink
Implement automatic small character icons generation
Browse files Browse the repository at this point in the history
  • Loading branch information
man90es committed May 30, 2024
1 parent 76d0dd2 commit b0606c2
Show file tree
Hide file tree
Showing 6 changed files with 4,224 additions and 5,432 deletions.
10 changes: 8 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*

README.md
README.md
.env.example

LICENSE
LICENSE

# MacOS rubbish files
.DS_Store

# Programmatically generated files
/assets/images/characters/**/icon
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dist/
# ides
.vscode
.idea
.vs
.vs

*.log
npm-debug.log*
Expand All @@ -14,4 +14,10 @@ yarn-error.log*
lerna-debug.log*

nodemon.json
package-lock.json
package-lock.json

# MacOS rubbish files
.DS_Store

# Programmatically generated files
/assets/images/characters/**/icon
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"watch": "tsc -w",
"dev": "nodemon",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts && prettier --check ."
"lint": "eslint . --ext .js,.ts && prettier --check .",
"prebuild": "ts-node ./scripts/prebuild.ts"
},
"repository": {
"type": "git",
Expand All @@ -30,7 +31,7 @@
}
],
"engines": {
"node": "^16.0.0"
"node": "^20.0.0"
},
"license": "OSL-3.0",
"bugs": {
Expand All @@ -51,6 +52,7 @@
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
Expand Down
Loading

0 comments on commit b0606c2

Please sign in to comment.