Move the app payload under swift/ while keeping git, package.json, and .smartconfig.json at the repo root. This standardizes the Swift app setup so build, test, run, and watch workflows match the other repos.
This commit is contained in:
18
package.json
Normal file
18
package.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "idp-global-swiftapp-tooling",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@10.18.1",
|
||||
"scripts": {
|
||||
"swift:doctor": "tsswift doctor --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:emulators": "tsswift emulators --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:build": "tsswift build --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:build:macos": "tsswift build --path swift/IDPGlobal.xcodeproj --platform macos",
|
||||
"swift:test": "tsswift test --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:run": "tsswift run --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:watch": "tsswift watch --path swift/IDPGlobal.xcodeproj",
|
||||
"swift:launch": "tsswift launch --path swift/IDPGlobal.xcodeproj"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsswift": "0.4.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user