1 Commits

Author SHA1 Message Date
dependabot[bot]
3b3c62d539 Bump js-yaml from 3.12.0 to 3.13.1
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.13.1.
- [Release notes](https://github.com/nodeca/js-yaml/releases)
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.12.0...3.13.1)

Signed-off-by: dependabot[bot] <support@github.com>
2019-09-27 14:45:44 +00:00
3 changed files with 9 additions and 7 deletions

10
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{ {
"name": "@vkl/svg-iconset-builder", "name": "@vkl/svg-iconset-builder",
"version": "1.0.2", "version": "1.0.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@@ -42,7 +42,7 @@
"dependencies": { "dependencies": {
"chalk": { "chalk": {
"version": "1.1.3", "version": "1.1.3",
"resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true, "dev": true,
"requires": { "requires": {
@@ -496,9 +496,9 @@
"dev": true "dev": true
}, },
"js-yaml": { "js-yaml": {
"version": "3.12.0", "version": "3.13.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
"integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
"requires": { "requires": {
"argparse": "^1.0.7", "argparse": "^1.0.7",
"esprima": "^4.0.0" "esprima": "^4.0.0"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@vkl/svg-iconset-builder", "name": "@vkl/svg-iconset-builder",
"version": "1.0.2", "version": "1.0.1",
"description": "create iconset from separated svg icons", "description": "create iconset from separated svg icons",
"main": "./dist/app.js", "main": "./dist/app.js",
"types": "./dist/app.d.ts", "types": "./dist/app.d.ts",

View File

@@ -30,6 +30,7 @@ export class SvgIconset {
svgClean(this.config.source, this.svgoPlugin) svgClean(this.config.source, this.svgoPlugin)
.then(optimizedResponse => { .then(optimizedResponse => {
let idx = 0;
const ids = optimizedResponse.map(el => el.id); const ids = optimizedResponse.map(el => el.id);
Promise.all(optimizedResponse.map(el => el.optimized)) Promise.all(optimizedResponse.map(el => el.optimized))
.then(resFiles => { .then(resFiles => {
@@ -37,8 +38,9 @@ export class SvgIconset {
createWriteStream(resultFile) createWriteStream(resultFile)
.once('open', function (this: WriteStream) { .once('open', function (this: WriteStream) {
try { try {
const data = resFiles.map((res, idx) => res.data.replace(/<svg /, `<svg id="${ids[idx]}" `)); const data = resFiles.map(res => res.data.replace(/<svg /, `<svg id="${ids[idx]}" `));
this.write(`<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">${data.join('')}</svg>`); this.write(`<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">${data.join('')}</svg>`);
idx++;
this.end(); this.end();
} catch (err) { } catch (err) {
console.log('ERROR', err); console.log('ERROR', err);