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

polymer-project-config

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polymer-project-config - npm Package Compare versions

Comparing version 3.12.0 to 3.13.0

4

CHANGELOG.md

@@ -11,2 +11,6 @@ # Change Log

## [3.13.0] - 2018-04-03
* [breaking] Rename `build` option from `js.transformEsModulesToAmd` to `js.transformModulesToAmd`.
* Add new `build` option: `js.transformImportMeta`.
## [3.12.0] - 2018-03-28

@@ -13,0 +17,0 @@ * Added new `build` option: `js.transformEsModulesToAmd`.

6

lib/builds.d.ts

@@ -121,4 +121,6 @@ /**

};
/** Transform ES modules to AMD modules, for older browsers. */
transformEsModulesToAmd?: boolean;
/** Transform ES modules to AMD modules. */
transformModulesToAmd?: boolean;
/** Rewrite `import.meta` expressions to objects with inline URLs. */
transformImportMeta?: boolean;
};

@@ -125,0 +127,0 @@ /**

@@ -207,5 +207,9 @@ {

},
"transformEsModulesToAmd": {
"description": "Transform ES modules to AMD modules, for older browsers.",
"transformImportMeta": {
"description": "Rewrite `import.meta` expressions to objects with inline URLs.",
"type": "boolean"
},
"transformModulesToAmd": {
"description": "Transform ES modules to AMD modules.",
"type": "boolean"
}

@@ -212,0 +216,0 @@ },

{
"name": "polymer-project-config",
"version": "3.12.0",
"version": "3.13.0",
"description": "reads, validates, and shapes your polymer.json project configuration",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -110,3 +110,3 @@ /**

/** Minify HTMl by removing comments and whitespace. */
minify?: boolean|{
minify?: boolean | {
/** HTML files listed here will not be minified. */

@@ -120,3 +120,3 @@ exclude?: string[],

/** Minify inlined and external CSS. */
minify?: boolean|{
minify?: boolean | {
/** CSS files listed here will not be minified. */

@@ -130,3 +130,3 @@ exclude?: string[],

/** Minify inlined and external JavaScript. */
minify?: boolean|{
minify?: boolean | {
/** JavaScript files listed here will not be minified. */

@@ -142,4 +142,7 @@ exclude?: string[],

/** Transform ES modules to AMD modules, for older browsers. */
transformEsModulesToAmd?: boolean,
/** Transform ES modules to AMD modules. */
transformModulesToAmd?: boolean,
/** Rewrite `import.meta` expressions to objects with inline URLs. */
transformImportMeta?: boolean;
};

@@ -146,0 +149,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