polymer-project-config
Advanced tools
Comparing version 3.12.0 to 3.13.0
@@ -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`. |
@@ -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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
114878
2817