Skip to content

Commit db49c70

Browse files
committed
Update qpm.json to support qpm qmod zip
1 parent 0b92c1b commit db49c70

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

qpm.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://raw.githubusercontent.com/QuestPackageManager/QPM.Package/refs/heads/main/qpm.schema.json",
23
"version": "0.1.0",
34
"sharedDir": "shared",
45
"dependenciesDir": "extern",
@@ -15,31 +16,36 @@
1516
"workspace": {
1617
"scripts": {
1718
"build": [
18-
"pwsh build.ps1"
19+
"pwsh build.ps1 $0:?"
1920
],
2021
"clean": [
2122
"pwsh build.ps1 -clean"
2223
],
2324
"copy": [
24-
"pwsh copy.ps1"
25+
"pwsh copy.ps1 $0:?"
2526
],
2627
"log": [
27-
"pwsh start-logging.ps1"
28+
"pwsh start-logging.ps1 $0:?"
2829
],
2930
"qmod": [
30-
"pwsh createqmod.ps1"
31+
"pwsh createqmod.ps1 $0:?"
3132
],
3233
"restart": [
33-
"pwsh restart-game.ps1"
34+
"pwsh restart-game.ps1 $0:?"
3435
],
3536
"stack": [
36-
"pwsh ndk-stack.ps1"
37+
"pwsh ndk-stack.ps1 $0:?"
3738
],
3839
"tomb": [
39-
"pwsh pull-tombstone.ps1"
40+
"pwsh pull-tombstone.ps1 $0:?"
4041
]
4142
},
4243
"ndk": "^27.2.12479018",
44+
"qmodIncludeDirs": [
45+
"./build",
46+
"./extern/libs"
47+
],
48+
"qmodIncludeFiles": [],
4349
"qmodOutput": "./RecentlyPlayed.qmod"
4450
},
4551
"dependencies": [

qpm.shared.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,35 @@
1717
"workspace": {
1818
"scripts": {
1919
"build": [
20-
"pwsh build.ps1"
20+
"pwsh build.ps1 $0:?"
2121
],
2222
"clean": [
2323
"pwsh build.ps1 -clean"
2424
],
2525
"copy": [
26-
"pwsh copy.ps1"
26+
"pwsh copy.ps1 $0:?"
2727
],
2828
"log": [
29-
"pwsh start-logging.ps1"
29+
"pwsh start-logging.ps1 $0:?"
3030
],
3131
"qmod": [
32-
"pwsh createqmod.ps1"
32+
"pwsh createqmod.ps1 $0:?"
3333
],
3434
"restart": [
35-
"pwsh restart-game.ps1"
35+
"pwsh restart-game.ps1 $0:?"
3636
],
3737
"stack": [
38-
"pwsh ndk-stack.ps1"
38+
"pwsh ndk-stack.ps1 $0:?"
3939
],
4040
"tomb": [
41-
"pwsh pull-tombstone.ps1"
41+
"pwsh pull-tombstone.ps1 $0:?"
4242
]
4343
},
4444
"ndk": "^27.2.12479018",
45-
"qmodIncludeDirs": [],
45+
"qmodIncludeDirs": [
46+
"./build",
47+
"./extern/libs"
48+
],
4649
"qmodIncludeFiles": [],
4750
"qmodOutput": "./RecentlyPlayed.qmod"
4851
},

0 commit comments

Comments
 (0)