@certik/skynet 0.25.0 → 0.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +5 -0
- package/CHANGELOG.md +10 -0
- package/README.md +8 -2
- package/dist/abi.d.ts +111 -0
- package/dist/abi.js +571 -0
- package/dist/address.d.ts +2 -0
- package/dist/address.js +24 -0
- package/dist/api.d.ts +31 -0
- package/dist/api.js +260 -0
- package/dist/app.d.ts +101 -0
- package/dist/app.js +2077 -0
- package/dist/availability.d.ts +23 -0
- package/dist/availability.js +133 -0
- package/dist/cli.d.ts +5 -0
- package/dist/cli.js +41 -0
- package/dist/const.d.ts +34 -0
- package/dist/const.js +162 -0
- package/dist/date.d.ts +5 -0
- package/dist/date.js +56 -0
- package/dist/deploy.d.ts +75 -0
- package/dist/deploy.js +587 -0
- package/dist/dynamodb.d.ts +16 -0
- package/dist/dynamodb.js +479 -0
- package/dist/env.d.ts +6 -0
- package/dist/env.js +26 -0
- package/dist/goalert.d.ts +19 -0
- package/dist/goalert.js +43 -0
- package/dist/graphql.d.ts +6 -0
- package/dist/graphql.js +35 -0
- package/dist/indexer.d.ts +69 -0
- package/dist/indexer.js +1099 -0
- package/dist/log.d.ts +13 -0
- package/dist/log.js +63 -0
- package/dist/object-hash.d.ts +1 -0
- package/dist/object-hash.js +61 -0
- package/dist/por.d.ts +37 -0
- package/dist/por.js +120 -0
- package/dist/s3.d.ts +20 -0
- package/dist/s3.js +122 -0
- package/dist/search.d.ts +5 -0
- package/dist/search.js +105 -0
- package/dist/selector.d.ts +17 -0
- package/dist/selector.js +44 -0
- package/dist/slack.d.ts +14 -0
- package/dist/slack.js +29 -0
- package/dist/util.d.ts +4 -0
- package/dist/util.js +27 -0
- package/examples/api.ts +0 -0
- package/examples/indexer.ts +0 -0
- package/examples/mode-indexer.ts +0 -0
- package/package.json +1 -1
- package/src/deploy.ts +1 -1
package/examples/api.ts
CHANGED
|
File without changes
|
package/examples/indexer.ts
CHANGED
|
File without changes
|
package/examples/mode-indexer.ts
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/src/deploy.ts
CHANGED
|
@@ -143,7 +143,7 @@ const genConfig = ({
|
|
|
143
143
|
command = "sh"
|
|
144
144
|
args = [
|
|
145
145
|
"-c",
|
|
146
|
-
"cd \${meta.skynet_code_path}/${workingDirectory} && if [ -e bun.lockb ]; then bun install --silent; else yarn install --silent; fi && exec ${cmd}"
|
|
146
|
+
"cd \${meta.skynet_code_path}/${workingDirectory} && if [ -e bun.lockb ] || [ -e bun.lock ]; then bun install --production --silent; else yarn install --production --silent; fi && exec ${cmd}"
|
|
147
147
|
]
|
|
148
148
|
}
|
|
149
149
|
|