Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eliumhq/elium-i18n

Package Overview
Dependencies
Maintainers
7
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eliumhq/elium-i18n - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

2

package.json

@@ -7,3 +7,3 @@ {

"license": "UNLICENSED",
"version": "2.2.0",
"version": "2.2.1",
"engines": {

@@ -10,0 +10,0 @@ "node": ">=9",

@@ -15,6 +15,6 @@ const { exec } = require('./utils')

const branchParam = branch ? `-b ${branch}` : ''
const branchParam = branch ? `-b ${typeof branch !== 'boolean' ? branch : ''}` : ''
try {
// We have to force the pull otherwise existing languages are skipped
await exec(`tx pull ${langs} --parallel -f -{branchParam}`)
await exec(`tx pull ${langs} --parallel -f ${branchParam}`)

@@ -21,0 +21,0 @@ // Transifex does not download the translation file for the source language

@@ -6,3 +6,7 @@ const { exec } = require('./utils')

try {
await exec(`tx push -s --parallel ${branch ? '-b ' + branch : ''}`)
var branchParam = ''
if (branch) {
branchParam = '-b ' + (typeof branch === 'boolean' ? '' : branch)
}
await exec(`tx push -s --parallel ${branchParam}`)
console.log('Template pushed.')

@@ -9,0 +13,0 @@ } catch (err) {

Sorry, the diff of this file is not supported yet

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