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

shopping-checkout

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shopping-checkout - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

11

bin/cli.js

@@ -82,3 +82,12 @@ #! /usr/bin/env node

// 读取电子表格的第一张表
const wb = parseXLSX( pathResolve( templateName , xlsxFilename ) );
let wb;
try {
wb = parseXLSX( pathResolve( templateName , xlsxFilename ) );
}
catch ( e ) {
console.error( '解析 %s 文件时出错:' , pathResolve( templateName , xlsxFilename ) );
console.error( e );
console.error( '将不会在 %s 里生成文件。' , templateName );
return;
}
const firstSheet = wb.Sheets[ wb.SheetNames[ 0 ] ];

@@ -85,0 +94,0 @@

2

package.json
{
"name" : "shopping-checkout" ,
"version" : "0.1.3" ,
"version" : "0.1.4" ,
"description" : "根据数据生成购物网站的结算页面" ,

@@ -5,0 +5,0 @@ "preferGlobal" : true ,

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