Skip to content

Instantly share code, notes, and snippets.

@tokorom
Last active December 7, 2016 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokorom/166ac9349c57e4ba891f53973d99e910 to your computer and use it in GitHub Desktop.
Save tokorom/166ac9349c57e4ba891f53973d99e910 to your computer and use it in GitHub Desktop.
package.json for swift package development
{
"config": {
"exe": "hoge"
},
"scripts": {
"build": "swift build",
"run": "./.build/debug/$npm_package_config_exe",
"build-and-run": "npm run build; npm run run",
"watch": "watch 'npm run build-and-run' ./Sources",
"start": "npm run watch"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment