chore: lint fix nodejs
This commit is contained in:
@@ -35,6 +35,10 @@
|
|||||||
"packageName": "@kiterun/incus",
|
"packageName": "@kiterun/incus",
|
||||||
"packageDescription": "A Pulumi package for creating and managing incus cloud resources.",
|
"packageDescription": "A Pulumi package for creating and managing incus cloud resources.",
|
||||||
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/lxc/terraform-provider-incus)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-incus` repo](https://git.kalinow.ski/kiterun/pulumi-incus/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-incus` repo](https://github.com/lxc/terraform-provider-incus/issues).",
|
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/lxc/terraform-provider-incus)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-incus` repo](https://git.kalinow.ski/kiterun/pulumi-incus/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-incus` repo](https://github.com/lxc/terraform-provider-incus/issues).",
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^24.10.1",
|
||||||
|
"oxfmt": "^0.17.0"
|
||||||
|
},
|
||||||
"typescriptVersion": "^5.8.3",
|
"typescriptVersion": "^5.8.3",
|
||||||
"compatibility": "tfbridge20",
|
"compatibility": "tfbridge20",
|
||||||
"disableUnionOutputTypes": true,
|
"disableUnionOutputTypes": true,
|
||||||
|
|||||||
2
sdk/nodejs/config/vars.ts
generated
2
sdk/nodejs/config/vars.ts
generated
@@ -2,9 +2,7 @@
|
|||||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||||
|
|
||||||
import * as pulumi from "@pulumi/pulumi";
|
import * as pulumi from "@pulumi/pulumi";
|
||||||
import * as inputs from "../types/input";
|
|
||||||
import * as outputs from "../types/output";
|
import * as outputs from "../types/output";
|
||||||
import * as utilities from "../utilities";
|
|
||||||
|
|
||||||
declare var exports: any;
|
declare var exports: any;
|
||||||
const __config = new pulumi.Config("incus");
|
const __config = new pulumi.Config("incus");
|
||||||
|
|||||||
3
sdk/nodejs/package.json
generated
3
sdk/nodejs/package.json
generated
@@ -26,6 +26,5 @@
|
|||||||
"name": "incus",
|
"name": "incus",
|
||||||
"version": "1.0.0-alpha.0+dev",
|
"version": "1.0.0-alpha.0+dev",
|
||||||
"server": "https://git.kalinow.ski/api/packages/kiterun/generic/pulumi-incus/${VERSION}/"
|
"server": "https://git.kalinow.ski/api/packages/kiterun/generic/pulumi-incus/${VERSION}/"
|
||||||
},
|
}
|
||||||
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501"
|
|
||||||
}
|
}
|
||||||
|
|||||||
1
sdk/nodejs/provider.ts
generated
1
sdk/nodejs/provider.ts
generated
@@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
import * as pulumi from "@pulumi/pulumi";
|
import * as pulumi from "@pulumi/pulumi";
|
||||||
import * as inputs from "./types/input";
|
import * as inputs from "./types/input";
|
||||||
import * as outputs from "./types/output";
|
|
||||||
import * as utilities from "./utilities";
|
import * as utilities from "./utilities";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
2
sdk/nodejs/types/index.ts
generated
2
sdk/nodejs/types/index.ts
generated
@@ -1,8 +1,6 @@
|
|||||||
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
||||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||||
|
|
||||||
import * as utilities from "../utilities";
|
|
||||||
|
|
||||||
// Export sub-modules:
|
// Export sub-modules:
|
||||||
import * as input from "./input";
|
import * as input from "./input";
|
||||||
import * as output from "./output";
|
import * as output from "./output";
|
||||||
|
|||||||
Reference in New Issue
Block a user