Skip to content

Commit 3772a03

Browse files
committed
chore: update templates
1 parent 9ac9353 commit 3772a03

File tree

19 files changed

+30
-70
lines changed

19 files changed

+30
-70
lines changed

packages/isaacscript-cli/file-templates/dynamic/README.mod.md renamed to packages/isaacscript-cli/file-templates/dynamic/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ If you are a developer, or if the mod is not yet uploaded to the Steam Workshop,
1919
- Open the command prompt (or another shell of your choice).
2020
- Use the `cd` command to navigate to the place where you unzipped the repository.
2121
- Use the `PACKAGE-MANAGER-INSTALL-COMMAND` command to install the project dependencies.
22-
- Use the `npx isaacscript` command to start the IsaacScript watcher.
22+
- Use the `PACKAGE-MANAGER-EXEC-COMMAND isaacscript` command to start the IsaacScript watcher.
2323
- If IsaacScript is successful, you will see "Compilation successful." (You can continue to leave the terminal window open; it will monitor for changes in your project, and recompile if necessary.)
2424
- Completely close Isaac if it is already open, and then open the game again, and the mod should be in the list of mods. You can now play or test the mod.

packages/isaacscript-cli/file-templates/dynamic/README.ts.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/isaacscript-cli/file-templates/dynamic/_gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
.DS_Store
33
thumbs.db
44

5-
# @template-mod-start
65
# Per-user IsaacScript settings
76
isaacscript.json
87

98
# The transpiled Lua output
109
mod/main.lua
11-
# @template-mod-end
1210

1311
# ------------------------------
1412
# GitHub Node.gitignore template

packages/isaacscript-cli/file-templates/dynamic/package.mod.json renamed to packages/isaacscript-cli/file-templates/dynamic/package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
2-
"name": "PROJECT_NAME",
2+
"name": "project-name",
33
"version": "0.0.0",
44
"description": "A mod for The Binding of Isaac: Repentance.",
5-
"keywords": ["isaac", "mod", "rebirth", "afterbirth", "repentance"],
5+
"keywords": [
6+
"isaac",
7+
"mod",
8+
"rebirth",
9+
"afterbirth",
10+
"repentance"
11+
],
612
"license": "GPL-3.0",
713
"type": "module",
814
"scripts": {

packages/isaacscript-cli/file-templates/dynamic/package.ts.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

packages/isaacscript-cli/file-templates/static-mod/.luarc.json renamed to packages/isaacscript-cli/file-templates/static/.luarc.json

File renamed without changes.

packages/isaacscript-cli/file-templates/static-mod/.prettierignore renamed to packages/isaacscript-cli/file-templates/static/.prettierignore

File renamed without changes.

packages/isaacscript-cli/file-templates/static-mod/.vscode/extensions.json renamed to packages/isaacscript-cli/file-templates/static/.vscode/extensions.json

File renamed without changes.

packages/isaacscript-cli/file-templates/static-mod/.vscode/settings.json renamed to packages/isaacscript-cli/file-templates/static/.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"**/.yarn/": true,
3030
"**/dist/": true,
3131
"**/node_modules/": true,
32-
"bun.lockb": true,
32+
"bun.lock": true,
3333
"LICENSE": true,
3434
"package-lock.json": true,
3535
"pnpm-lock.yaml": true,

packages/isaacscript-cli/file-templates/static-mod/_cspell.config.jsonc renamed to packages/isaacscript-cli/file-templates/static/_cspell.config.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"*.svg",
1414
".git/**",
1515
".yarn/**",
16-
"bun.lockb",
16+
"bun.lock",
1717
"dist/**",
1818
"LICENSE",
1919
"node_modules/**",

0 commit comments

Comments
 (0)