New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hd-app-scripts

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hd-app-scripts - npm Package Compare versions

Comparing version 1.0.12 to 1.0.13

dist/credentials.d.ts

20

dist/index.js

@@ -8,6 +8,15 @@ #!/usr/bin/env node

const commander_1 = require("commander");
const credentials_1 = __importDefault(require("./credentials"));
const build_1 = __importDefault(require("./build"));
const openai_1 = require("./openai");
const prebuild_1 = __importDefault(require("./prebuild"));
const program = new commander_1.Command();
program
.option('-c, --credentials', 'expo install credentials')
.option('-l, --language <action>', 'run language')
.option('-lp, --languagePath <path>', 'language path default=./app')
.option('-o, --openai <oaction>', 'run language open ai')
.option('-op, --openaiLanguagePath <opath>', 'language path default=./app')
.option('-oc, --openaiContext <ocontext>', 'language context')
.option('-d, --doctor', 'run expo doctor')
.option('-prebuild, --prebuild', 'run pre build script')

@@ -24,2 +33,13 @@ .option('-b, --build', 'run github build')

const options = program.opts();
if (options.credentials) {
(0, credentials_1.default)();
}
if (options.openai) {
const method = options.openai;
const openaiLanguagePath = options.openaiLanguagePath;
const openaiContext = options.openaiContext;
(0, openai_1.openaiX)(method, openaiLanguagePath, openaiContext).then(() => {
console.log('Done!');
});
}
if (options.build) {

@@ -26,0 +46,0 @@ const buildPlatform = options.buildPlatform;

2

package.json
{
"name": "hd-app-scripts",
"version": "1.0.12",
"version": "1.0.13",
"description": "",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc