zapier-platform-cli 12.2.1 → 13.0.0
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/README-source.md +39 -39
- package/README.md +61 -65
- package/oclif.manifest.json +1 -1
- package/package.json +25 -25
- package/scaffold/create.template.js +2 -2
- package/scaffold/resource.template.js +2 -2
- package/scaffold/search.template.js +2 -2
- package/scaffold/trigger.template.js +2 -2
- package/src/constants.js +1 -1
- package/src/generators/templates/README.template.md +1 -1
- package/src/generators/templates/callback/README.md +1 -1
- package/src/generators/templates/files/README.md +1 -1
- package/src/oclif/commands/convert.js +27 -64
- package/src/oclif/commands/promote.js +1 -1
- package/src/utils/build.js +1 -0
- package/src/version-store.js +1 -1
package/src/utils/build.js
CHANGED
|
@@ -167,6 +167,7 @@ const forceIncludeDumbPath = (appConfig, filePath) => {
|
|
|
167
167
|
// include old async deasync versions so this runs seamlessly across node versions
|
|
168
168
|
filePath.endsWith(path.join('bin', 'linux-x64-node-10', 'deasync.node')) ||
|
|
169
169
|
filePath.endsWith(path.join('bin', 'linux-x64-node-12', 'deasync.node')) ||
|
|
170
|
+
filePath.endsWith(path.join('bin', 'linux-x64-node-14', 'deasync.node')) ||
|
|
170
171
|
filePath.endsWith(
|
|
171
172
|
// Special, for zapier-platform-legacy-scripting-runner
|
|
172
173
|
path.join('bin', `linux-x64-node-${nodeMajorVersion}`, 'deasync.node')
|
package/src/version-store.js
CHANGED
|
@@ -15,5 +15,5 @@ module.exports = [
|
|
|
15
15
|
{ nodeVersion: '12', npmVersion: '>=5.6.0' }, // 10.x
|
|
16
16
|
{ nodeVersion: '14', npmVersion: '>=5.6.0' }, // 11.x
|
|
17
17
|
{ nodeVersion: '14', npmVersion: '>=5.6.0' }, // 12.x
|
|
18
|
-
|
|
18
|
+
{ nodeVersion: '16', npmVersion: '>=5.6.0' }, // 13.x
|
|
19
19
|
];
|