Skip to content

Commit 2f40140

Browse files
committed
changed .vgg back to .daruma for later use with daruma service
1 parent e1069dc commit 2f40140

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Command-line tool that converts design files into VGG format.
1414
```sh-session
1515
$ npm install -g @verygoodgraphics/vgg-cli
1616
$ vgg-cli convert xxx.fig
17-
Saved as "xxx.vgg"
17+
Saved as "xxx.daruma"
1818
```
1919
# Development Usage
2020

@@ -24,5 +24,5 @@ $ pnpm run build
2424
$ ./bin/run.js --help # running built scripts in `dist` folder
2525
$ ./bin/dev.js --help # running original scripts in `command` folder
2626
$ ./bin/dev.js convert xxx.fig
27-
Saved as "xxx.vgg"
27+
Saved as "xxx.daruma"
2828
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@
6565
},
6666
"type": "module",
6767
"types": "dist/index.d.ts",
68-
"version": "0.0.1"
68+
"version": "0.0.2"
6969
}

src/commands/convert/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,6 @@ export default class Convert extends Command {
168168

169169
// Download converted file
170170
const {url: downloadUrl} = await getDarumaDownload(darumaImport.darumaId)
171-
await downloadFile(downloadUrl, replaceExt(filename, 'vgg'))
171+
await downloadFile(downloadUrl, replaceExt(filename, 'daruma'))
172172
}
173173
}

0 commit comments

Comments
 (0)