Skip to content

Commit

Permalink
chore: bump dependencies (#5182)
Browse files Browse the repository at this point in the history
* chore: replace header gulp plugin with eslint check

* chore: bump otel packages

* chore: bump nodemon
  • Loading branch information
TimBeyer authored Oct 4, 2023
1 parent fe67fc0 commit c25365c
Show file tree
Hide file tree
Showing 12 changed files with 603 additions and 12,945 deletions.
13 changes: 11 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [".eslintrc.autogenerated.js"],
"plugins": ["unused-imports", "mocha"],
"plugins": ["unused-imports", "mocha", "header"],
"ignorePatterns": ["*.d.ts*"],
"rules": {
"@typescript-eslint/no-floating-promises": "warn",
Expand Down Expand Up @@ -33,6 +33,15 @@
],
"mocha/no-skipped-tests": "warn",
"mocha/no-exclusive-tests": "error",
"unused-imports/no-unused-imports": "error"
"unused-imports/no-unused-imports": "error",
"header/header": [2, "block", [
"",
" * Copyright (C) 2018-2023 Garden Technologies, Inc. <[email protected]>",
" *",
" * This Source Code Form is subject to the terms of the Mozilla Public",
" * License, v. 2.0. If a copy of the MPL was not distributed with this",
" * file, You can obtain one at http://mozilla.org/MPL/2.0/.",
" "
]]
}
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ We use [Circle CI](https://circleci.com) for integration and end-to-end testing.
## License/copyright headers

Every source file must include the contents of `support/license-header.txt` at the top. This is
automatically checked during CI. You can run the check with `npm run check-licenses`.
automatically checked during CI. Since it's defined as an eslint rule, you can run the check with `npm run lint`.

## Release process

Expand Down
10 changes: 5 additions & 5 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"@jsdevtools/readdir-enhanced": "^6.0.4",
"@kubernetes/client-node": "=0.18.0",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.40.0",
"@opentelemetry/instrumentation-http": "^0.40.0",
"@opentelemetry/otlp-exporter-base": "^0.40.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.41.1",
"@opentelemetry/instrumentation-http": "^0.41.1",
"@opentelemetry/otlp-exporter-base": "^0.41.1",
"@opentelemetry/resources": "^1.14.0",
"@opentelemetry/sdk-node": "^0.40.0",
"@opentelemetry/sdk-node": "^0.41.1",
"@opentelemetry/sdk-trace-base": "^1.14.0",
"@opentelemetry/semantic-conventions": "^1.14.0",
"@scg82/exit-hook": "^3.4.1",
Expand Down Expand Up @@ -247,7 +247,7 @@
"mocha": "^10.2.0",
"nock": "^12.0.3",
"node-fetch": "^2.7.0",
"nodemon": "^2.0.15",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"p-event": "^4.2.0",
"peggy": "^3.0.2",
Expand Down
25 changes: 0 additions & 25 deletions gulpfile.ts

This file was deleted.

Loading

0 comments on commit c25365c

Please sign in to comment.