pulumi/.gitignore

90 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2016-11-16 17:28:46 +00:00
*.swp
**/vendor/
**/node_modules/
**/bin
**/.vscode/**/*
**/.vs/
2020-01-21 08:27:44 +00:00
**/.ionide/
**/.idea/
**/.DS_Store
coverage.cov
*.coverprofile
*.cov
2021-04-09 20:54:05 +00:00
**/obj/
coverage/
venv/
.envrc
NodeJS transforms (#15532) <!--- Thanks so much for your contribution! If this is your first time contributing, please ensure that you have read the [CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md) documentation. --> # Description <!--- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. --> This adds a new experimental feature to the NodeJS SDK to register remote transform functions. These are currently all prefixed 'X' to show they're experimental. These transform functions will run even for resources created inside MLCs. ## Checklist - [x] I have run `make tidy` to update any new dependencies - [x] I have run `make lint` to verify my code passes the lint check - [x] I have formatted my code using `gofumpt` <!--- Please provide details if the checkbox below is to be left unchecked. --> - [x] I have added tests that prove my fix is effective or that my feature works <!--- User-facing changes require a CHANGELOG entry. --> - [x] I have run `make changelog` and committed the `changelog/pending/<file>` documenting my change <!-- If the change(s) in this PR is a modification of an existing call to the Pulumi Cloud, then the service should honor older versions of the CLI where this change would not exist. You must then bump the API version in /pkg/backend/httpstate/client/api.go, as well as add it to the service. --> - [ ] Yes, there are changes in this PR that warrants bumping the Pulumi Cloud API version <!-- @Pulumi employees: If yes, you must submit corresponding changes in the service repo. -->
2024-03-07 08:52:34 +00:00
# Ignore VSCode created solution file
/pulumi.sln
.mono
# Ignore user-provided go.work files.
/go.work
2023-03-13 18:29:23 +00:00
/go.work.sum
**/.idea/
*.iml
.yarn
# VSCode creates this binary when running tests in the debugger
**/debug.test
# Check in vscode settings for this workspace. This is so we can save common settings like setting go build tags to use by default.
!**/.vscode/settings.json
# Go tests run "in tree" and this folder will linger if they fail (the integration test framework cleans
# it up when they pass.)
**/command-output/
2018-11-12 23:34:11 +00:00
# Likewise, we don't want to keep the typechecked version of our codegen tests.
tests/testdata/codegen/*/typecheck/**
# We don't need to keep testing python __pycache__ either either
tests/testdata/codegen/*-pp/*/*.csproj
tests/testdata/codegen/*-pp/*/go.mod
tests/testdata/codegen/*-pp/*/go.sum
tests/testdata/codegen/*-pp/*/Program.cs
tests/testdata/codegen/*-pp/*/package.json
tests/testdata/codegen/*-pp/*/go.sum
tests/testdata/codegen/*-pp/*/tsconfig.json
2018-11-12 23:34:11 +00:00
# By default, we don't check in yarn.lock files
**/yarn.lock
2021-03-02 00:43:12 +00:00
# By default, we don't check in Pipfile.lock files
**/Pipfile.lock
# Turning on MyPy in VSCode creates this workspace local folder
.mypy_cache
# for goreleaser
**/*.exe
goreleaser
pulumi-resource-pulumi-nodejs
pulumi-resource-pulumi-python
pulumi-analyzer-policy
pulumi-analyzer-policy-python
pulumi-language-python-exec
pulumi-resource-pulumi-nodejs.cmd
pulumi-resource-pulumi-python.cmd
pulumi-python3-shim.cmd
pulumi-python-shim.cmd
pulumi-analyzer-policy.cmd
pulumi-analyzer-policy-python.cmd
artifacts/
goreleaser-downloads/
goreleaser-prebuilt/
goreleaser-lang/
goreleaser-linux/
goreleaser-darwin/
goreleaser-windows/
__pycache__
.pytest_cache
# File targets for make
*.phony
2022-09-02 05:40:13 +00:00
# Temporary files
*.tmp
test-results/
2023-03-08 23:34:15 +00:00
yarn-error.log