@storm-software/git-tools 2.98.0 → 2.99.0

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.
@@ -35339,15 +35339,22 @@ init_esm_shims();
35339
35339
  init_esm_shims();
35340
35340
  var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
35341
35341
  var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
35342
+ var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
35342
35343
  var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
35343
35344
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
35344
35345
  var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
35346
+ var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
35347
+ var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
35348
+ var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
35349
+ var STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
35350
+ var STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
35351
+ var STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
35345
35352
  var STORM_DEFAULT_RELEASE_FOOTER = `
35346
- [Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
35353
+ [Storm Software](${STORM_DEFAULT_HOMEPAGE}) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
35347
35354
 
35348
- Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
35355
+ Join us on [Discord](${STORM_DEFAULT_ACCOUNT_DISCORD}) to chat with the team, receive release notifications, ask questions, and get involved.
35349
35356
 
35350
- If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
35357
+ If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${STORM_DEFAULT_ACCOUNT_SLACK}) channel!
35351
35358
  `;
35352
35359
 
35353
35360
  // ../config/src/define-config.ts
@@ -39655,6 +39662,14 @@ var WorkspaceReleaseConfigSchema = z.object({
39655
39662
  header: z.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
39656
39663
  footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
39657
39664
  }).describe("The workspace's release config used during the release process");
39665
+ var WorkspaceAccountConfigSchema = z.object({
39666
+ twitter: z.string().trim().default(STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
39667
+ discord: z.string().trim().default(STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
39668
+ telegram: z.string().trim().default(STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
39669
+ slack: z.string().trim().default(STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
39670
+ medium: z.string().trim().default(STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
39671
+ github: z.string().trim().default(STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
39672
+ }).describe("The workspace's account config used to store various social media links");
39658
39673
  var WorkspaceDirectoryConfigSchema = z.object({
39659
39674
  cache: z.string().trim().optional().describe("The directory used to store the environment's cached file data"),
39660
39675
  data: z.string().trim().optional().describe("The directory used to store the environment's data files"),
@@ -39674,11 +39689,13 @@ var StormConfigSchema = z.object({
39674
39689
  homepage: z.string().trim().url().default(STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
39675
39690
  docs: z.string().trim().url().default(STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
39676
39691
  licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
39692
+ contact: z.string().trim().url().default(STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
39677
39693
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
39678
39694
  preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
39679
39695
  owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
39680
39696
  bot: WorkspaceBotConfigSchema,
39681
39697
  release: WorkspaceReleaseConfigSchema,
39698
+ account: WorkspaceAccountConfigSchema,
39682
39699
  mode: z.enum([
39683
39700
  "development",
39684
39701
  "staging",
@@ -41029,12 +41046,21 @@ var getConfigEnv = /* @__PURE__ */ __name(() => {
41029
41046
  header: process.env[`${prefix}RELEASE_HEADER`] || void 0,
41030
41047
  footer: process.env[`${prefix}RELEASE_FOOTER`] || void 0
41031
41048
  },
41049
+ account: {
41050
+ twitter: process.env[`${prefix}ACCOUNT_TWITTER`] || void 0,
41051
+ discord: process.env[`${prefix}ACCOUNT_DISCORD`] || void 0,
41052
+ telegram: process.env[`${prefix}ACCOUNT_TELEGRAM`] || void 0,
41053
+ slack: process.env[`${prefix}ACCOUNT_SLACK`] || void 0,
41054
+ medium: process.env[`${prefix}ACCOUNT_MEDIUM`] || void 0,
41055
+ github: process.env[`${prefix}ACCOUNT_GITHUB`] || void 0
41056
+ },
41032
41057
  organization: process.env[`${prefix}ORGANIZATION`] || void 0,
41033
41058
  packageManager: process.env[`${prefix}PACKAGE_MANAGER`] || void 0,
41034
41059
  license: process.env[`${prefix}LICENSE`] || void 0,
41035
41060
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
41036
41061
  docs: process.env[`${prefix}DOCS`] || void 0,
41037
41062
  licensing: process.env[`${prefix}LICENSING`] || void 0,
41063
+ contact: process.env[`${prefix}CONTACT`] || void 0,
41038
41064
  timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
41039
41065
  locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
41040
41066
  configFile: process.env[`${prefix}CONFIG_FILE`] ? correctPaths(process.env[`${prefix}CONFIG_FILE`]) : void 0,
@@ -41199,6 +41225,26 @@ var setConfigEnv = /* @__PURE__ */ __name((config) => {
41199
41225
  process.env[`${prefix}RELEASE_HEADER`] = config.release.header;
41200
41226
  process.env[`${prefix}RELEASE_FOOTER`] = config.release.footer;
41201
41227
  }
41228
+ if (config.account) {
41229
+ if (config.account.twitter) {
41230
+ process.env[`${prefix}ACCOUNT_TWITTER`] = config.account.twitter;
41231
+ }
41232
+ if (config.account.discord) {
41233
+ process.env[`${prefix}ACCOUNT_DISCORD`] = config.account.discord;
41234
+ }
41235
+ if (config.account.telegram) {
41236
+ process.env[`${prefix}ACCOUNT_TELEGRAM`] = config.account.telegram;
41237
+ }
41238
+ if (config.account.slack) {
41239
+ process.env[`${prefix}ACCOUNT_SLACK`] = config.account.slack;
41240
+ }
41241
+ if (config.account.medium) {
41242
+ process.env[`${prefix}ACCOUNT_MEDIUM`] = config.account.medium;
41243
+ }
41244
+ if (config.account.github) {
41245
+ process.env[`${prefix}ACCOUNT_GITHUB`] = config.account.github;
41246
+ }
41247
+ }
41202
41248
  if (config.organization) {
41203
41249
  process.env[`${prefix}ORGANIZATION`] = config.organization;
41204
41250
  }
@@ -41217,6 +41263,9 @@ var setConfigEnv = /* @__PURE__ */ __name((config) => {
41217
41263
  if (config.licensing) {
41218
41264
  process.env[`${prefix}LICENSING`] = config.licensing;
41219
41265
  }
41266
+ if (config.contact) {
41267
+ process.env[`${prefix}CONTACT`] = config.contact;
41268
+ }
41220
41269
  if (config.timezone) {
41221
41270
  process.env[`${prefix}TIMEZONE`] = config.timezone;
41222
41271
  process.env.TZ = config.timezone;
@@ -35339,15 +35339,22 @@ _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
35339
35339
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
35340
35340
  var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
35341
35341
  var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
35342
+ var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
35342
35343
  var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
35343
35344
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
35344
35345
  var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
35346
+ var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
35347
+ var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
35348
+ var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
35349
+ var STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
35350
+ var STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
35351
+ var STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
35345
35352
  var STORM_DEFAULT_RELEASE_FOOTER = `
35346
- [Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
35353
+ [Storm Software](${STORM_DEFAULT_HOMEPAGE}) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
35347
35354
 
35348
- Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
35355
+ Join us on [Discord](${STORM_DEFAULT_ACCOUNT_DISCORD}) to chat with the team, receive release notifications, ask questions, and get involved.
35349
35356
 
35350
- If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
35357
+ If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${STORM_DEFAULT_ACCOUNT_SLACK}) channel!
35351
35358
  `;
35352
35359
 
35353
35360
  // ../config/src/define-config.ts
@@ -39655,6 +39662,14 @@ var WorkspaceReleaseConfigSchema = z.object({
39655
39662
  header: z.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
39656
39663
  footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
39657
39664
  }).describe("The workspace's release config used during the release process");
39665
+ var WorkspaceAccountConfigSchema = z.object({
39666
+ twitter: z.string().trim().default(STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
39667
+ discord: z.string().trim().default(STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
39668
+ telegram: z.string().trim().default(STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
39669
+ slack: z.string().trim().default(STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
39670
+ medium: z.string().trim().default(STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
39671
+ github: z.string().trim().default(STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
39672
+ }).describe("The workspace's account config used to store various social media links");
39658
39673
  var WorkspaceDirectoryConfigSchema = z.object({
39659
39674
  cache: z.string().trim().optional().describe("The directory used to store the environment's cached file data"),
39660
39675
  data: z.string().trim().optional().describe("The directory used to store the environment's data files"),
@@ -39674,11 +39689,13 @@ var StormConfigSchema = z.object({
39674
39689
  homepage: z.string().trim().url().default(STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
39675
39690
  docs: z.string().trim().url().default(STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
39676
39691
  licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
39692
+ contact: z.string().trim().url().default(STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
39677
39693
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
39678
39694
  preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
39679
39695
  owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
39680
39696
  bot: WorkspaceBotConfigSchema,
39681
39697
  release: WorkspaceReleaseConfigSchema,
39698
+ account: WorkspaceAccountConfigSchema,
39682
39699
  mode: z.enum([
39683
39700
  "development",
39684
39701
  "staging",
@@ -41032,12 +41049,21 @@ var getConfigEnv = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, () => {
41032
41049
  header: process.env[`${prefix}RELEASE_HEADER`] || void 0,
41033
41050
  footer: process.env[`${prefix}RELEASE_FOOTER`] || void 0
41034
41051
  },
41052
+ account: {
41053
+ twitter: process.env[`${prefix}ACCOUNT_TWITTER`] || void 0,
41054
+ discord: process.env[`${prefix}ACCOUNT_DISCORD`] || void 0,
41055
+ telegram: process.env[`${prefix}ACCOUNT_TELEGRAM`] || void 0,
41056
+ slack: process.env[`${prefix}ACCOUNT_SLACK`] || void 0,
41057
+ medium: process.env[`${prefix}ACCOUNT_MEDIUM`] || void 0,
41058
+ github: process.env[`${prefix}ACCOUNT_GITHUB`] || void 0
41059
+ },
41035
41060
  organization: process.env[`${prefix}ORGANIZATION`] || void 0,
41036
41061
  packageManager: process.env[`${prefix}PACKAGE_MANAGER`] || void 0,
41037
41062
  license: process.env[`${prefix}LICENSE`] || void 0,
41038
41063
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
41039
41064
  docs: process.env[`${prefix}DOCS`] || void 0,
41040
41065
  licensing: process.env[`${prefix}LICENSING`] || void 0,
41066
+ contact: process.env[`${prefix}CONTACT`] || void 0,
41041
41067
  timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
41042
41068
  locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
41043
41069
  configFile: process.env[`${prefix}CONFIG_FILE`] ? correctPaths(process.env[`${prefix}CONFIG_FILE`]) : void 0,
@@ -41202,6 +41228,26 @@ var setConfigEnv = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, (config
41202
41228
  process.env[`${prefix}RELEASE_HEADER`] = config.release.header;
41203
41229
  process.env[`${prefix}RELEASE_FOOTER`] = config.release.footer;
41204
41230
  }
41231
+ if (config.account) {
41232
+ if (config.account.twitter) {
41233
+ process.env[`${prefix}ACCOUNT_TWITTER`] = config.account.twitter;
41234
+ }
41235
+ if (config.account.discord) {
41236
+ process.env[`${prefix}ACCOUNT_DISCORD`] = config.account.discord;
41237
+ }
41238
+ if (config.account.telegram) {
41239
+ process.env[`${prefix}ACCOUNT_TELEGRAM`] = config.account.telegram;
41240
+ }
41241
+ if (config.account.slack) {
41242
+ process.env[`${prefix}ACCOUNT_SLACK`] = config.account.slack;
41243
+ }
41244
+ if (config.account.medium) {
41245
+ process.env[`${prefix}ACCOUNT_MEDIUM`] = config.account.medium;
41246
+ }
41247
+ if (config.account.github) {
41248
+ process.env[`${prefix}ACCOUNT_GITHUB`] = config.account.github;
41249
+ }
41250
+ }
41205
41251
  if (config.organization) {
41206
41252
  process.env[`${prefix}ORGANIZATION`] = config.organization;
41207
41253
  }
@@ -41220,6 +41266,9 @@ var setConfigEnv = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, (config
41220
41266
  if (config.licensing) {
41221
41267
  process.env[`${prefix}LICENSING`] = config.licensing;
41222
41268
  }
41269
+ if (config.contact) {
41270
+ process.env[`${prefix}CONTACT`] = config.contact;
41271
+ }
41223
41272
  if (config.timezone) {
41224
41273
  process.env[`${prefix}TIMEZONE`] = config.timezone;
41225
41274
  process.env.TZ = config.timezone;