Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package-lock fix npm advisories 1071 1500 #10453

Merged
merged 1 commit into from
Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ before_install:
- gem install bundler -v '< 2'
- gem update --system 2.7.8
- gem --version
# install node version 10.x
- nvm install 10.22.0
- nvm use 10.22.0
# install typescript
- npm install -g typescript
- npm install -g npm
- npm config set registry http://registry.npmjs.org/
Expand All @@ -64,7 +68,18 @@ before_install:
- cat /etc/hosts
# show java version
- java -version

# show node version
- node -v
# show node executable
- which node
# show npm version
- npm -v
# show npm executable
- which npm
# show typescript version
- tsc -v
# show tsc executable
- which tsc
install:
# Add Godeps dependencies to GOPATH and PATH
- eval "$(curl -sL https://raw.githubusercontent.com/travis-ci/gimme/master/gimme | GIMME_GO_VERSION=1.4 bash)"
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -849,8 +849,13 @@
<module>samples/client/petstore/python-asyncio</module>
<module>samples/client/petstore/typescript-fetch/builds/default</module>
<module>samples/client/petstore/typescript-fetch/builds/es6-target</module>
<!--
comment out due to error experienced since Sept 6th 2020 due to removed support
for ts 2.x in DefinitivelyTyped. see https://github.com/swagger-api/swagger-codegen/issues/10454

<module>samples/client/petstore/typescript-fetch/builds/with-npm-version</module>
<module>samples/client/petstore/typescript-fetch/tests/default</module>
-->
<module>samples/client/petstore/typescript-node/npm</module>
<!-- comment out due to github rate limit error
<module>samples/client/petstore/typescript-angularjs</module>-->
Expand Down
5 changes: 5 additions & 0 deletions pom.xml.travis
Original file line number Diff line number Diff line change
Expand Up @@ -849,8 +849,13 @@
<module>samples/client/petstore/python-asyncio</module>
<module>samples/client/petstore/typescript-fetch/builds/default</module>
<module>samples/client/petstore/typescript-fetch/builds/es6-target</module>
<!--
comment out due to error experienced since Sept 6th 2020 due to removed support
for ts 2.x in DefinitivelyTyped. see https://github.com/swagger-api/swagger-codegen/issues/10454

<module>samples/client/petstore/typescript-fetch/builds/with-npm-version</module>
<module>samples/client/petstore/typescript-fetch/tests/default</module>
-->
<module>samples/client/petstore/typescript-node/npm</module>
<!-- comment out due to github rate limit error
<module>samples/client/petstore/typescript-angularjs</module>-->
Expand Down
Loading