Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 3689f06

Browse files
author
Irfan Maulana
committed
hotfix 3.0.2
1 parent df61938 commit 3689f06

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

dist.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,15 @@ generateTemplateData().then((templateData) => {
193193
console.log(chalk.red('Error when build templateData'))
194194
})
195195

196-
fs.copyFile('public/ionicons.css', 'dist/ionicons.css', (err) => {
196+
fs.copyFile('ionicons.css', 'dist/ionicons.css', (err) => {
197197
if (err) throw err;
198198
console.log(chalk.green('File css already copied'))
199199
});
200-
fs.copyFile('public/ionicons.scss', 'dist/ionicons.scss', (err) => {
200+
fs.copyFile('ionicons.scss', 'dist/ionicons.scss', (err) => {
201201
if (err) throw err;
202202
console.log(chalk.green('File scss already copied'))
203203
});
204-
fs.copyFile('public/ionicons.less', 'dist/ionicons.less', (err) => {
204+
fs.copyFile('ionicons.less', 'dist/ionicons.less', (err) => {
205205
if (err) throw err;
206206
console.log(chalk.green('File less already copied'))
207207
});
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-ionicons",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"license": "MIT",
55
"author": "Irfan Maulana (https://github.com/mazipan/)",
66
"description": "Vue Icon Set Components from Ionic Team",
@@ -12,7 +12,10 @@
1212
"deploy": "node ./gh-publish.js"
1313
},
1414
"files": [
15-
"dist/**"
15+
"dist/**",
16+
"ionicons.css",
17+
"ionicons.scss",
18+
"ionicons.less"
1619
],
1720
"keywords": [
1821
"vue ionicons",

0 commit comments

Comments
 (0)