Skip to content

Commit

Permalink
chore: Update npm dependencies and configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
tacxou committed Jun 19, 2024
1 parent 861a60b commit 6c1d85c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
# - run: npm ci
- run: npm install
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion src/aws-s3.storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
SignedUrlResponse,
StatResponse,
UnknownException,
} from '@streamkits/nestjs_module_factorydrive'
} from '@the-software-compagny/nestjs_module_factorydrive'
import { GetObjectCommand, S3, S3ClientConfig } from '@aws-sdk/client-s3'
import { getSignedUrl } from '@aws-sdk/s3-request-presigner'

Expand Down
4 changes: 4 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
}
23 changes: 14 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "CommonJS",
"types": ["node"],
"lib": ["es7"],
"declaration": true,
"removeComments": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": false,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./",
"target": "es2017",
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"baseUrl": ".",
"noLib": false,
"esModuleInterop": true
"incremental": true,
"moduleResolution": "node",
"esModuleInterop": true,
"tsBuildInfoFile": "dist/.tsbuildinfo"
},
"include": ["src/**/*.ts"],
"include": ["src/**/*"],
"exclude": ["node_modules"]
}

0 comments on commit 6c1d85c

Please sign in to comment.