From 889cc75ab44cfb14e0a65a0286eb0aa1c9a2d68e Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Fri, 6 Apr 2018 20:24:59 +0300 Subject: [PATCH] Added octicons as a devDependency Generated some SVG files to use on the new index page. --- docs/icons/chevron-left.svg | 1 + docs/icons/chevron-right.svg | 1 + docs/icons/code.svg | 1 + docs/icons/dashboard.svg | 1 + docs/icons/git-branch.svg | 1 + docs/icons/law.svg | 1 + docs/icons/organization.svg | 1 + docs/icons/star.svg | 1 + package-lock.json | 11 +++++++++-- package.json | 3 ++- 10 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 docs/icons/chevron-left.svg create mode 100644 docs/icons/chevron-right.svg create mode 100644 docs/icons/code.svg create mode 100644 docs/icons/dashboard.svg create mode 100644 docs/icons/git-branch.svg create mode 100644 docs/icons/law.svg create mode 100644 docs/icons/organization.svg create mode 100644 docs/icons/star.svg diff --git a/docs/icons/chevron-left.svg b/docs/icons/chevron-left.svg new file mode 100644 index 000000000..5fa552a07 --- /dev/null +++ b/docs/icons/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/chevron-right.svg b/docs/icons/chevron-right.svg new file mode 100644 index 000000000..399d68762 --- /dev/null +++ b/docs/icons/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/code.svg b/docs/icons/code.svg new file mode 100644 index 000000000..d66aa59da --- /dev/null +++ b/docs/icons/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/dashboard.svg b/docs/icons/dashboard.svg new file mode 100644 index 000000000..8a27ad0ad --- /dev/null +++ b/docs/icons/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/git-branch.svg b/docs/icons/git-branch.svg new file mode 100644 index 000000000..279e21c5c --- /dev/null +++ b/docs/icons/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/law.svg b/docs/icons/law.svg new file mode 100644 index 000000000..61701b384 --- /dev/null +++ b/docs/icons/law.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/organization.svg b/docs/icons/organization.svg new file mode 100644 index 000000000..b968ecfcd --- /dev/null +++ b/docs/icons/organization.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/icons/star.svg b/docs/icons/star.svg new file mode 100644 index 000000000..4a584a3c9 --- /dev/null +++ b/docs/icons/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5d7736c68..b264c644e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3781,8 +3781,7 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-inspect": { "version": "1.3.0", @@ -3807,6 +3806,14 @@ "object-keys": "1.0.11" } }, + "octicons": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/octicons/-/octicons-7.2.0.tgz", + "integrity": "sha512-d7JFtVoeK07Anp0wRvZ7GJ+eCW5hGRvrGJn7wt64NnpaZdxlvDBFwnafLbljZoNnXCdlpgFoZz9yD+NLw1gXLA==", + "requires": { + "object-assign": "4.1.1" + } + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", diff --git a/package.json b/package.json index 4dd3113d2..ea08a1e74 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,8 @@ "rollup-plugin-babel-minify": "^3.1.2", "semistandard": "^11.0.0", "tap-spec": "^4.1.1", - "tape": "^4.8.0" + "tape": "^4.8.0", + "octicons": "^7.2.0" }, "name": "30-seconds-of-code", "description": "A collection of useful JavaScript snippets.",