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

atlassian-soy-cli

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atlassian-soy-cli - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

7

app/cli.js

@@ -19,3 +19,6 @@ var _ = require('lodash');

/** {object} extra arguments to pass through (values can be string or string[]) */
extraArgs: {}
extraArgs: {},
/** {String} default type is js */
type: 'js'
};

@@ -100,3 +103,3 @@

return _.extend({}, sanitisedExtraArgs, {
type: 'js',
type: options.type,
basedir: options.basedir,

@@ -103,0 +106,0 @@ outdir: options.outdir,

{
"name": "atlassian-soy-cli",
"version": "1.1.1",
"version": "1.2.0",
"description": "Node wrapper for the Atlassian Soy CLI",

@@ -20,2 +20,5 @@ "main": "app/cli.js",

],
"files": [
"app"
],
"license": "Apache-2.0",

@@ -32,8 +35,8 @@ "homepage": "https://bitbucket.org/atlassian/node-soy-cli#readme",

"find-java-home": "^0.1.2",
"fs-extra": "^0.24.0",
"fs-extra": "^0.26.7",
"interpolate": "^0.1.0",
"lodash": "^3.10.1",
"lodash": "^4.6.1",
"q": "^1.4.1",
"winston": "^1.0.2"
"winston": "^2.2.0"
}
}

@@ -18,7 +18,8 @@ # Node.js: Atlassian Soy CLI

var soyCli = require('atlassian-soy-cli')
var soyCli = require('atlassian-soy-cli');
var cli = soyCli({
version: '4.1.2', // optional
basedir: 'src/main/resources',
outdir: 'target/classes'
outdir: 'target/classes',
type: 'js' // optional
});

@@ -43,5 +44,6 @@

outdir: "/path/to/compiled/js",
type: 'js', // optional
extraArgs: {
'use-ajs-context': true,
'rootNamespace': 'mynamespace',
'rootnamespace': 'mynamespace',
'i18n': [

@@ -56,5 +58,5 @@ '/path/to/file1',

--use-ajs-context --rootNamespace "mynamespace" --i18n "/path/to/file1" --i18n "/path/to/file2"
--use-ajs-context --rootnamespace "mynamespace" --i18n "/path/to/file1" --i18n "/path/to/file2"
[atlassian-soy-templates]: https://bitbucket.org/atlassian/atlassian-soy-templates
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