@surph_ai/sdk 0.0.9 → 0.0.10
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/index.js +0 -15
- package/package.json +8 -2
package/index.js
CHANGED
|
@@ -225,17 +225,6 @@ program.command('connect')
|
|
|
225
225
|
}
|
|
226
226
|
})
|
|
227
227
|
|
|
228
|
-
program.command('build')
|
|
229
|
-
.description('compile Surph app')
|
|
230
|
-
.action(name => {
|
|
231
|
-
shell.exec('gulp build --gulpfile node_modules/@turbo360/turbo-sdk/src/gulpfile.js --silent')
|
|
232
|
-
|
|
233
|
-
console.log('BUILD COMPLETE')
|
|
234
|
-
// const gulpfilePath = path.join(__dirname, 'scaffold/app/gulpfile.js')
|
|
235
|
-
// shell.exec(`gulp build --gulpfile ${gulpfilePath}`)
|
|
236
|
-
})
|
|
237
|
-
|
|
238
|
-
|
|
239
228
|
program.command('deploy')
|
|
240
229
|
.option('-t, --type <default_or_static>', 'deployment type | static or default', 'default') // https://www.npmjs.com/package/commander#default-option-value
|
|
241
230
|
.description('Deploy to Surph')
|
|
@@ -288,7 +277,3 @@ program.command('deploy')
|
|
|
288
277
|
})
|
|
289
278
|
|
|
290
279
|
program.parse(process.argv)
|
|
291
|
-
|
|
292
|
-
module.exports = {
|
|
293
|
-
|
|
294
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@surph_ai/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -20,10 +20,16 @@
|
|
|
20
20
|
"adm-zip": "^0.5.10",
|
|
21
21
|
"axios": "^1.12.2",
|
|
22
22
|
"bestzip": "^2.2.1",
|
|
23
|
+
"cheerio": "^1.2.0",
|
|
23
24
|
"colors": "^1.4.0",
|
|
25
|
+
"cookie": "^0.5.0",
|
|
24
26
|
"commander": "^14.0.1",
|
|
27
|
+
"cors": "^2.8.6",
|
|
25
28
|
"dotenv": "^16.0.3",
|
|
29
|
+
"express": "^4.18.1",
|
|
30
|
+
"impit": "^0.14.0",
|
|
26
31
|
"prompt": "^1.3.0",
|
|
27
|
-
"shelljs": "^0.8.5"
|
|
32
|
+
"shelljs": "^0.8.5",
|
|
33
|
+
"mustache": "^4.2.0"
|
|
28
34
|
}
|
|
29
35
|
}
|