no prefixes

This commit is contained in:
Kyle Spearrin 2019-03-14 10:33:54 -04:00
parent 6796cb1561
commit e9ded1d004
1 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ init:
SET REPO_URL=https://github.com/%APPVEYOR_REPO_NAME%.git
install:
- ps: npm install -g gulp
- npm install -g gulp
- ps: choco install cloc --no-progress
- ps: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
@ -23,11 +23,11 @@ before_build:
- npm --version
build_script:
- cmd: npm install
- npm install
# Do normal build
- cmd: npm run dist
- cmd: npm run test
- cmd: gulp ci
- npm run dist
- npm run test
- gulp ci
# Build sources for reviewers
- cmd: |
CALL git clone --branch=%APPVEYOR_REPO_BRANCH% %REPO_URL% %DIST_SRC_DIR%