This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = "oxlint" | |
type = "cli" | |
[resolve] | |
git-url = "https://github.com/oxc-project/oxc" | |
version-pattern = "^oxlint_v((?<major>[0-9]+)\\.(?<minor>[0-9]+)\\.(?<patch>[0-9]+))" | |
[platform.linux] | |
download-file = "oxlint-linux-{arch}-{libc}.tar.gz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SFTPToS3Operator.partial( | |
task_id="upload_to_s3", | |
s3_conn_id="AWS_CON_1", | |
s3_bucket="my_bucket" | |
).expand_kwargs( | |
other_task_ouputs.map( | |
lambda x: { | |
"sftp_conn_id": SFTPHook( | |
x["db_record"]["ftp_username"], x["db_record"]["ftp_password"] | |
), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { assign, createMachine } from "xstate"; | |
import axios from "axios"; | |
import type { CancelTokenSource } from "axios"; | |
interface GroupsContext { | |
groups?: any; | |
cancelTokenSource?: CancelTokenSource; | |
error?: Error; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chainWebpack: (config) => { | |
config.plugin("define").tap((args) => { | |
let _base = args[0]["process.env"]; | |
args[0]["process.env"] = { | |
..._base, | |
MY_CUSTOM_VARIABLE: JSON.stringify(process.env.VARIABLE), | |
}; | |
return args; | |
}); | |
} |