Skip to content
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
1,971 changes: 721 additions & 1,250 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/licenses.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"license": "MIT",
"dependencies": {
"@actions/core": "2.0.2",
"@datadog/datadog-ci": "3.11.0",
"@datadog/datadog-ci": "5.1.0",
"@datadog/datadog-ci-base": "5.1.0",
"axios": "^1.12.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {platform} from 'os'
import * as core from '@actions/core'
import {BaseContext, Cli} from 'clipanion'
import {UploadCommand} from '@datadog/datadog-ci/dist/commands/dsyms/upload'
import {DsymsUploadCommand} from '@datadog/datadog-ci-base/commands/dsyms/upload'

// Create a local clipanion cli and register the dsyms UploadCommand.
// Create a local clipanion cli and register the dsyms DsymsUploadCommand.
export const cli = new Cli()
cli.register(UploadCommand)
cli.register(DsymsUploadCommand)

/**
* Uploads Dsym files at the given path.
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs",
"moduleResolution": "node",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
Expand Down
Loading