remove jasmine-ts
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Timo Hocker 2022-03-17 12:54:23 +01:00
parent b7d0827f5e
commit d2ff45e09e
Signed by: Timo
GPG Key ID: AA43099EDEEB12AC

View File

@ -12,9 +12,11 @@ const files = require ('./assets');
const scripts = { const scripts = {
lint: 'eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs', lint: 'eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs',
test: { test: {
common: 'nyc jasmine --config="jasmine.json"', common: 'nyc jasmine --config="jasmine.json"',
ts: 'nyc jasmine-ts --config="jasmine.json"', ts: 'nyc jasmine --config="jasmine.json"',
no: 'echo "no test"' ts_pre: 'tsc',
ts_post: 'tsc --build --clean',
no: 'echo "no test"'
}, },
compile: { compile: {
common: 'tsc --allowJs --declaration --emitDeclarationOnly index.js', common: 'tsc --allowJs --declaration --emitDeclarationOnly index.js',