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

@vocab/cli

Package Overview
Dependencies
Maintainers
4
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vocab/cli - npm Package Compare versions

Comparing version 1.4.4 to 2.0.0

12

dist/vocab-cli.cjs.dev.js

@@ -5,3 +5,3 @@ 'use strict';

var core = require('@vocab/core');
var yargs = require('yargs');
var yargsCli = require('yargs');
var envCi = require('env-ci');

@@ -11,3 +11,3 @@

var yargs__default = /*#__PURE__*/_interopDefault(yargs);
var yargsCli__default = /*#__PURE__*/_interopDefault(yargsCli);
var envCi__default = /*#__PURE__*/_interopDefault(envCi);

@@ -27,3 +27,3 @@

// eslint-disable-next-line @typescript-eslint/no-unused-expressions
yargs__default["default"](process.argv.slice(2)).scriptName('vocab').option('config', {
yargsCli__default["default"](process.argv.slice(2)).scriptName('vocab').option('config', {
type: 'string',

@@ -38,3 +38,3 @@ describe: 'Path to config file'

command: 'push',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -52,3 +52,3 @@ 'delete-unused-keys': {

command: 'pull',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -66,3 +66,3 @@ 'error-on-no-global-key-translation': {

command: 'compile',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
watch: {

@@ -69,0 +69,0 @@ type: 'boolean',

@@ -5,3 +5,3 @@ 'use strict';

var core = require('@vocab/core');
var yargs = require('yargs');
var yargsCli = require('yargs');
var envCi = require('env-ci');

@@ -11,3 +11,3 @@

var yargs__default = /*#__PURE__*/_interopDefault(yargs);
var yargsCli__default = /*#__PURE__*/_interopDefault(yargsCli);
var envCi__default = /*#__PURE__*/_interopDefault(envCi);

@@ -27,3 +27,3 @@

// eslint-disable-next-line @typescript-eslint/no-unused-expressions
yargs__default["default"](process.argv.slice(2)).scriptName('vocab').option('config', {
yargsCli__default["default"](process.argv.slice(2)).scriptName('vocab').option('config', {
type: 'string',

@@ -38,3 +38,3 @@ describe: 'Path to config file'

command: 'push',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -52,3 +52,3 @@ 'delete-unused-keys': {

command: 'pull',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -66,3 +66,3 @@ 'error-on-no-global-key-translation': {

command: 'compile',
builder: () => yargs__default["default"].options({
builder: yargs => yargs.options({
watch: {

@@ -69,0 +69,0 @@ type: 'boolean',

import { push, pull } from '@vocab/phrase';
import { resolveConfig, compile, validate } from '@vocab/core';
import yargs from 'yargs';
import yargsCli from 'yargs';
import envCi from 'env-ci';

@@ -18,3 +18,3 @@

// eslint-disable-next-line @typescript-eslint/no-unused-expressions
yargs(process.argv.slice(2)).scriptName('vocab').option('config', {
yargsCli(process.argv.slice(2)).scriptName('vocab').option('config', {
type: 'string',

@@ -29,3 +29,3 @@ describe: 'Path to config file'

command: 'push',
builder: () => yargs.options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -43,3 +43,3 @@ 'delete-unused-keys': {

command: 'pull',
builder: () => yargs.options({
builder: yargs => yargs.options({
branch: branchDefinition,

@@ -57,3 +57,3 @@ 'error-on-no-global-key-translation': {

command: 'compile',
builder: () => yargs.options({
builder: yargs => yargs.options({
watch: {

@@ -60,0 +60,0 @@ type: 'boolean',

{
"name": "@vocab/cli",
"version": "1.4.4",
"version": "2.0.0",
"repository": {

@@ -18,20 +18,19 @@ "type": "git",

],
"engines": {
"node": ">=18"
},
"author": "SEEK",
"license": "MIT",
"dependencies": {
"@types/env-ci": "^3.1.0",
"@vocab/core": "^1.6.2",
"@vocab/phrase": "^1.3.3",
"env-ci": "^7.3.0",
"fast-glob": "^3.2.4",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"yargs": "^16.1.0"
"form-data": "^4.0.0",
"yargs": "^17.7.2",
"@vocab/core": "^1.6.2",
"@vocab/phrase": "^2.0.0"
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"@types/prettier": "^2.1.5",
"@types/yargs": "^15.0.9"
"@types/env-ci": "^3.1.0",
"@types/yargs": "^17.0.32"
}
}

@@ -42,4 +42,4 @@ # Vocab

module.exports = {
languages: [{ name: 'en' }, { name: 'fr' }]
devLanguage: 'en',
languages: [{ name: 'en' }, { name: 'fr' }],
devLanguage: 'en'
};

@@ -46,0 +46,0 @@ ```

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