Skip to content

Commit

Permalink
package-lock fix npm advisories 1071 1500
Browse files Browse the repository at this point in the history
  • Loading branch information
frantuma committed Sep 10, 2020
1 parent 1ffcd68 commit 6ac35f4
Show file tree
Hide file tree
Showing 6 changed files with 2,771 additions and 3,763 deletions.
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:https://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

0 comments on commit 6ac35f4

Please sign in to comment.