@elevasis/sdk 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.cjs +7 -2
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -40701,6 +40701,11 @@ function registerDescribeCommand(program3) {
40701
40701
  // src/cli/commands/init.ts
40702
40702
  var import_path3 = require("path");
40703
40703
  var import_promises2 = require("fs/promises");
40704
+
40705
+ // src/cli/version.ts
40706
+ var SDK_VERSION = "0.3.3";
40707
+
40708
+ // src/cli/commands/init.ts
40704
40709
  var SCAFFOLD_FILES = [
40705
40710
  "elevasis.config.ts",
40706
40711
  "package.json",
@@ -40781,7 +40786,7 @@ function packageJsonTemplate(organization) {
40781
40786
  deploy: "elevasis deploy"
40782
40787
  },
40783
40788
  dependencies: {
40784
- "@elevasis/sdk": "^0.3.0"
40789
+ "@elevasis/sdk": `^${SDK_VERSION}`
40785
40790
  },
40786
40791
  devDependencies: {
40787
40792
  typescript: "5.9.2",
@@ -40928,7 +40933,7 @@ Commands:
40928
40933
  elevasis init [directory] Scaffold a new project
40929
40934
 
40930
40935
  Use "elevasis <command> --help" for more information about a command.`
40931
- ).version("0.3.0");
40936
+ ).version(SDK_VERSION);
40932
40937
  registerCheckCommand(program2);
40933
40938
  registerDeployCommand(program2);
40934
40939
  registerExecCommand(program2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "comment:bin": "IMPORTANT: This package shares the 'elevasis' binary name with @repo/cli. They never conflict because @elevasis/sdk must NEVER be added as a dependency of any workspace package (apps/*, packages/*, organizations/*). Workspace projects use @repo/cli for the 'elevasis' binary. External developers (outside the workspace) get this SDK's binary via npm install.",
6
6
  "type": "module",