Skip to content

Commit

Permalink
Merge 8caecd4 into 94cfd90
Browse files Browse the repository at this point in the history
  • Loading branch information
fboucquez committed Oct 27, 2020
2 parents 94cfd90 + 8caecd4 commit 424b110
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .npmignore
@@ -1,11 +1,17 @@
src/
test/
node_modules/
e2e/
docs/
coverage/
.nyc_output/
.github/
.idea/
dist/test
dist/e2e
licenses/
travis/
target/
ts-docs/
.travis
*.iml
*.log
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -38,17 +38,17 @@ jobs:
script: /bin/bash travis/node-functions.sh node_push_github_pages
if: branch = env(DEV_BRANCH) AND type = push
- name: alpha npm
script: npm pack && /bin/bash travis/node-functions.sh node_publish_alpha
script: npm run build && /bin/bash travis/node-functions.sh node_publish_alpha
if: branch = env(DEV_BRANCH) AND type = push
- stage: release
name: release npm
script: npm pack && /bin/bash travis/node-functions.sh node_publish_release
script: npm run build && /bin/bash travis/node-functions.sh node_publish_release
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE)
- stage: release
name: github release pages
script: /bin/bash travis/node-functions.sh node_push_github_pages
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE)
- stage: post release
name: tag and version upgrade
script: npm pack && /bin/bash travis/node-functions.sh node_post_release
script: /bin/bash travis/node-functions.sh node_post_release
if: branch = env(RELEASE_BRANCH) AND type = api AND commit_message = env(RELEASE_MESSAGE)
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -4,6 +4,7 @@
"description": "Reactive symbol sdk for typescript and javascript",
"scripts": {
"pretest": "npm run build",
"prepack": "npm run build",
"test": "mocha --ui bdd --recursive ./dist/test --timeout 90000",
"e2econfigcopy": "gulp",
"test:e2e": "npm run build && mocha --ui bdd --recursive ./dist/e2e --timeout 90000",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Expand Up @@ -31,6 +31,6 @@
"include": [
"test/**/*.spec.ts",
"src/**/*.ts",
"e2e/**/*.ts", "test/infrastructure/streamer/PaginationStreamerTestHelper.ts"
"e2e/**/*.ts"
]
}
}

0 comments on commit 424b110

Please sign in to comment.