Skip to content

Commit 2158e99

Browse files
committed
chore: revert back to v3.7.0
1 parent 6919f16 commit 2158e99

File tree

5 files changed

+4
-25
lines changed

5 files changed

+4
-25
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.8.1
1+
v3.7.0

CHANGELOG.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
## [3.8.1](https://github.com/kkoomen/vim-doge/compare/v3.8.0...v3.8.1) (2021-03-07)
2-
3-
4-
### Bug Fixes
5-
6-
* **ci:** remove old build params ([dbc4a96](https://github.com/kkoomen/vim-doge/commit/dbc4a9637a0fba122ef5b967d31299130a29b66f))
7-
8-
# 3.8.0 (2021-03-07)
9-
10-
11-
### Bug Fixes
12-
13-
* remove prettier/[@typescript-eslint](https://github.com/typescript-eslint) from eslintrc ([cd8b9fb](https://github.com/kkoomen/vim-doge/commit/cd8b9fb515befdd209b6a20d247bb132bdf7ca4c))
14-
* **ci:** add strings around command for windows ([ffcfc74](https://github.com/kkoomen/vim-doge/commit/ffcfc7484d7ce12f0f6cc6432a4aa9a9af4b331f))
15-
* **ci:** do not pass any params to build binary scripts ([27545b4](https://github.com/kkoomen/vim-doge/commit/27545b4e6a311d2d463a28610c7ae5f0c624dc25))
16-
17-
181
### Features
192

203
* replace vercel/pkg with caxa ([3c145fd](https://github.com/kkoomen/vim-doge/commit/3c145fd343e95099d4c723db7bc8f98d18c9a790))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "vim-doge",
4-
"version": "3.8.1",
4+
"version": "3.7.0",
55
"description": "A Vim polyglot plugin for generating documentation",
66
"scripts": {
77
"release": "release-it",

scripts/build.ps1

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ if (!(Test-Path "$rootDir\bin")) {
88
cd $rootDir
99

1010
# Build the binary.
11-
if ($outFile -eq "") {
12-
npx caxa --directory "$rootDir/build" --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/vim-doge.exe"
13-
} else {
14-
npx caxa --directory "$rootDir/build" --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/$outFile.exe"
15-
}
11+
npx caxa --directory "$rootDir/build" --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/vim-doge.exe"
1612

1713
# Archive the binary.
1814
if ($outFile -ne "") {

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cd $ROOT_DIR
1212
[[ ! -d ./bin ]] && mkdir ./bin
1313

1414
# Build the binary.
15-
npx caxa --directory $ROOT_DIR/build --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/${OUTFILE:-vim-doge}"
15+
npx caxa --directory $ROOT_DIR/build --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/vim-doge"
1616

1717
# Archive the binary.
1818
if [[ "$OUTFILE" != "" ]]; then

0 commit comments

Comments
 (0)