From 4fec329a2f9a8c5bba163f6d4f3fcd7b3843bfac Mon Sep 17 00:00:00 2001 From: Attila Max Ruf Date: Thu, 4 Jul 2019 09:15:42 +0200 Subject: [PATCH 1/4] fix: add dist folder to file list --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e245aaf..591e35b 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.2.19", "description": "Material Design Icons for Vue.js", "main": "./dist/index.js", + "files": ["./dist/"], "directories": { "lib": "./dist/" }, @@ -29,7 +30,7 @@ "scripts": { "clean": "rm -rf build dist", "prebuild": "git submodule update --init && npm run clean && mkdir build dist", - "build": "node build.js && babel build --out-dir dist && cp *LICENSE dist && cp *.md dist", + "build": "node build.js && babel build --out-dir dist && rimraf build", "release": "node ./node_modules/.bin/standard-version" }, "dependencies": { @@ -43,6 +44,7 @@ "babel-register": "^6.24.1", "json-format": "^1.0.1", "lodash": "^4.17.4", + "rimraf": "^2.6.3", "standard-version": "^4.2.0" } } From 9ef9b6d4b34360d7603b7d12984fe64d7802fb28 Mon Sep 17 00:00:00 2001 From: Attila Max Ruf Date: Thu, 4 Jul 2019 09:16:04 +0200 Subject: [PATCH 2/4] chore: install rimraf --- yarn.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index e2c60ac..2ce7a0b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2685,7 +2685,7 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== -rimraf@^2.6.1: +rimraf@^2.6.1, rimraf@^2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== From c4ad47b267c8edaba3ce3f0af9702d1e454e6049 Mon Sep 17 00:00:00 2001 From: Attila Max Ruf Date: Thu, 4 Jul 2019 09:16:16 +0200 Subject: [PATCH 3/4] chore: remove example subrepo --- example | 1 - 1 file changed, 1 deletion(-) delete mode 160000 example diff --git a/example b/example deleted file mode 160000 index 1069e6f..0000000 --- a/example +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1069e6f649fa49b98653b9294d703dc5dcebe07c From f78c5c5e37028274018a1608fde3b134d8f9339b Mon Sep 17 00:00:00 2001 From: Attila Max Ruf Date: Thu, 4 Jul 2019 09:16:40 +0200 Subject: [PATCH 4/4] chore(release): 0.2.20 --- CHANGELOG.md | 10 ++++++++++ package.json | 6 ++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 294e7ab..e998d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [0.2.20](https://github.com/therufa/mdi-vue/compare/v0.2.19...v0.2.20) (2019-07-04) + + +### Bug Fixes + +* add dist folder to file list ([4fec329](https://github.com/therufa/mdi-vue/commit/4fec329)) + + + ## [0.2.19](https://github.com/therufa/mdi-vue/compare/v0.2.18...v0.2.19) (2019-07-04) diff --git a/package.json b/package.json index 591e35b..3dce63d 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,11 @@ { "name": "mdi-vue", - "version": "0.2.19", + "version": "0.2.20", "description": "Material Design Icons for Vue.js", "main": "./dist/index.js", - "files": ["./dist/"], + "files": [ + "./dist/" + ], "directories": { "lib": "./dist/" },