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

@giteeteam/apps-cli

Package Overview
Dependencies
Maintainers
4
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@giteeteam/apps-cli - npm Package Compare versions

Comparing version 0.1.13 to 0.1.14

16

dist/index.js

@@ -29,7 +29,5 @@ #!/usr/bin/env node

var version = "0.1.13";
var version = "0.1.14";
const packageApp = async (outputDir, manifest, _copyFiles = []) => {
// add copy file manifest
const copyFiles = ['manifest.yml', ..._copyFiles];
const packageApp = async ({ outputDir, manifest, copyFiles }) => {
const { resources } = manifest;

@@ -130,4 +128,3 @@ if (resources) {

var run$1 = async (opts) => {
const { outputDir, inputDir, prod, copyFiles, zip } = opts;
var run$1 = async ({ outputDir, inputDir, prod, copyFiles, zip }) => {
const manifest = await getManifestObject();

@@ -156,3 +153,3 @@ const { app: { version, key }, } = manifest;

succeed: 'package success',
}, () => packageApp(outputDir, manifest, copyFiles));
}, () => packageApp({ outputDir, manifest, copyFiles }));
if (zip) {

@@ -169,4 +166,5 @@ const pkgName = `${key}_${version}.zip`;

const defaultCopyFiles = ['manifest.yml'];
var build = async (options) => {
const { input = 'src', output = 'dist', prod, copy, zip } = options;
const { input = 'src', output = 'dist', prod, copy = [], zip } = options;
await run$1({

@@ -176,3 +174,3 @@ outputDir: path__default["default"].resolve(output),

prod: !!prod,
copyFiles: copy,
copyFiles: [...defaultCopyFiles, ...copy],
zip: zip,

@@ -179,0 +177,0 @@ });

{
"name": "@giteeteam/apps-cli",
"version": "0.1.13",
"version": "0.1.14",
"description": "Giteeteam Apps cli",

@@ -11,3 +11,3 @@ "keywords": [

"bin": {
"giteeteam-apps-cli": "./dist/index.js"
"giteeteam-apps": "./dist/index.js"
},

@@ -60,3 +60,3 @@ "license": "ISC",

},
"gitHead": "0edc60ca211858b1b25cf79ccf7595d6ee5f392e"
"gitHead": "c55c57740cad256f3d7d03f2c1d002d648d46634"
}
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