Make generation of demo.svg deterministic (#625)

This commit is contained in:
Duco van Amstel 2019-09-09 15:37:06 +01:00 committed by Isaev Denis
parent cdeefb5f79
commit 0b49095bae
5 changed files with 1502 additions and 3 deletions

View File

@ -1,12 +1,16 @@
sudo: false
language: go
go:
- 1.11.x
- 1.12.x
env:
global:
- NODE_VERSION=10.15.0
before_script:
- go get github.com/valyala/quicktemplate # for tests
- go get github.com/pkg/errors # for tests
- nvm install "${NODE_VERSION}"
script: make check_generated test

View File

@ -69,7 +69,7 @@ tools/godownloader: Makefile tools/go.mod
tools/svg-term:
@mkdir -p tools
cd tools && npm install svg-term-cli
cd tools && npm ci
ln -sf node_modules/.bin/svg-term $@
tools/Dracula.itermcolors:

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 178 KiB

After

Width:  |  Height:  |  Size: 178 KiB

1490
tools/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

5
tools/package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"svg-term-cli": "2.1.1"
}
}