@stacksjs/actions 0.70.0 → 0.70.2

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.
@@ -13,7 +13,7 @@ var require_lib = __commonJS((exports) => {
13
13
  var t = {};
14
14
  for (var n in r)
15
15
  if ({}.hasOwnProperty.call(r, n)) {
16
- if (e.includes(n))
16
+ if (e.indexOf(n) !== -1)
17
17
  continue;
18
18
  t[n] = r[n];
19
19
  }
@@ -4861,8 +4861,7 @@ var require_lib = __commonJS((exports) => {
4861
4861
  }
4862
4862
  }
4863
4863
  flowParseQualifiedTypeIdentifier(startLoc, id) {
4864
- var _startLoc;
4865
- (_startLoc = startLoc) != null || (startLoc = this.state.startLoc);
4864
+ startLoc != null || (startLoc = this.state.startLoc);
4866
4865
  let node = id || this.flowParseRestrictedIdentifier(true);
4867
4866
  while (this.eat(16)) {
4868
4867
  const node2 = this.startNodeAt(startLoc);
@@ -7338,14 +7337,7 @@ var require_lib = __commonJS((exports) => {
7338
7337
  const elt = exprList[i];
7339
7338
  if (!elt)
7340
7339
  continue;
7341
- if (elt.type === "SpreadElement") {
7342
- elt.type = "RestElement";
7343
- const arg = elt.argument;
7344
- this.checkToRestConversion(arg, true);
7345
- this.toAssignable(arg, isLHS);
7346
- } else {
7347
- this.toAssignable(elt, isLHS);
7348
- }
7340
+ this.toAssignableListItem(exprList, i, isLHS);
7349
7341
  if (elt.type === "RestElement") {
7350
7342
  if (i < end) {
7351
7343
  this.raise(Errors.RestTrailingComma, elt);
@@ -7355,6 +7347,17 @@ var require_lib = __commonJS((exports) => {
7355
7347
  }
7356
7348
  }
7357
7349
  }
7350
+ toAssignableListItem(exprList, index, isLHS) {
7351
+ const node = exprList[index];
7352
+ if (node.type === "SpreadElement") {
7353
+ node.type = "RestElement";
7354
+ const arg = node.argument;
7355
+ this.checkToRestConversion(arg, true);
7356
+ this.toAssignable(arg, isLHS);
7357
+ } else {
7358
+ this.toAssignable(node, isLHS);
7359
+ }
7360
+ }
7358
7361
  isAssignable(node, isBinding) {
7359
7362
  switch (node.type) {
7360
7363
  case "Identifier":
@@ -7448,13 +7451,15 @@ var require_lib = __commonJS((exports) => {
7448
7451
  }
7449
7452
  } else {
7450
7453
  const decorators = [];
7451
- if (this.match(26) && this.hasPlugin("decorators")) {
7452
- this.raise(Errors.UnsupportedParameterDecorator, this.state.startLoc);
7453
- }
7454
- while (this.match(26)) {
7455
- decorators.push(this.parseDecorator());
7454
+ if (flags & 2) {
7455
+ if (this.match(26) && this.hasPlugin("decorators")) {
7456
+ this.raise(Errors.UnsupportedParameterDecorator, this.state.startLoc);
7457
+ }
7458
+ while (this.match(26)) {
7459
+ decorators.push(this.parseDecorator());
7460
+ }
7456
7461
  }
7457
- elts.push(this.parseAssignableListItem(flags, decorators));
7462
+ elts.push(this.parseBindingElement(flags, decorators));
7458
7463
  }
7459
7464
  }
7460
7465
  return elts;
@@ -7484,7 +7489,7 @@ var require_lib = __commonJS((exports) => {
7484
7489
  prop.method = false;
7485
7490
  return this.parseObjPropValue(prop, startLoc, false, false, true, false);
7486
7491
  }
7487
- parseAssignableListItem(flags, decorators) {
7492
+ parseBindingElement(flags, decorators) {
7488
7493
  const left = this.parseMaybeDefault();
7489
7494
  if (this.hasPlugin("flow") || flags & 2) {
7490
7495
  this.parseFunctionParamType(left);
@@ -7499,9 +7504,8 @@ var require_lib = __commonJS((exports) => {
7499
7504
  return param;
7500
7505
  }
7501
7506
  parseMaybeDefault(startLoc, left) {
7502
- var _startLoc, _left;
7503
- (_startLoc = startLoc) != null || (startLoc = this.state.startLoc);
7504
- left = (_left = left) != null ? _left : this.parseBindingAtom();
7507
+ startLoc != null || (startLoc = this.state.startLoc);
7508
+ left = left != null ? left : this.parseBindingAtom();
7505
7509
  if (!this.eat(29))
7506
7510
  return left;
7507
7511
  const node = this.startNodeAt(startLoc);
@@ -7695,6 +7699,9 @@ var require_lib = __commonJS((exports) => {
7695
7699
  IndexSignatureHasOverride: "'override' modifier cannot appear on an index signature.",
7696
7700
  IndexSignatureHasStatic: "Index signatures cannot have the 'static' modifier.",
7697
7701
  InitializerNotAllowedInAmbientContext: "Initializers are not allowed in ambient contexts.",
7702
+ InvalidHeritageClauseType: ({
7703
+ token
7704
+ }) => `'${token}' list can only include identifiers or qualified-names with optional type arguments.`,
7698
7705
  InvalidModifierOnTypeMember: ({
7699
7706
  modifier
7700
7707
  }) => `'${modifier}' modifier cannot appear on a type member.`,
@@ -8754,8 +8761,8 @@ var require_lib = __commonJS((exports) => {
8754
8761
  tsParseHeritageClause(token) {
8755
8762
  const originalStartLoc = this.state.startLoc;
8756
8763
  const delimitedList = this.tsParseDelimitedList("HeritageClauseElement", () => {
8757
- const node = this.startNode();
8758
8764
  {
8765
+ const node = this.startNode();
8759
8766
  node.expression = this.tsParseEntityName(1 | 2);
8760
8767
  if (this.match(47)) {
8761
8768
  node.typeParameters = this.tsParseTypeArguments();
@@ -9165,7 +9172,7 @@ var require_lib = __commonJS((exports) => {
9165
9172
  return false;
9166
9173
  return super.isExportDefaultSpecifier();
9167
9174
  }
9168
- parseAssignableListItem(flags, decorators) {
9175
+ parseBindingElement(flags, decorators) {
9169
9176
  const startLoc = this.state.startLoc;
9170
9177
  const modified = {};
9171
9178
  this.tsParseModifiers({
@@ -9602,19 +9609,16 @@ var require_lib = __commonJS((exports) => {
9602
9609
  return super.shouldParseExportDeclaration();
9603
9610
  }
9604
9611
  parseConditional(expr, startLoc, refExpressionErrors) {
9605
- if (!this.state.maybeInArrowParameters || !this.match(17)) {
9606
- return super.parseConditional(expr, startLoc, refExpressionErrors);
9607
- }
9608
- const result = this.tryParse(() => super.parseConditional(expr, startLoc));
9609
- if (!result.node) {
9610
- if (result.error) {
9611
- super.setOptionalParametersError(refExpressionErrors, result.error);
9612
- }
9612
+ if (!this.match(17))
9613
9613
  return expr;
9614
+ if (this.state.maybeInArrowParameters) {
9615
+ const nextCh = this.lookaheadCharCode();
9616
+ if (nextCh === 44 || nextCh === 61 || nextCh === 58 || nextCh === 41) {
9617
+ this.setOptionalParametersError(refExpressionErrors);
9618
+ return expr;
9619
+ }
9614
9620
  }
9615
- if (result.error)
9616
- this.state = result.failState;
9617
- return result.node;
9621
+ return super.parseConditional(expr, startLoc, refExpressionErrors);
9618
9622
  }
9619
9623
  parseParenItem(node, startLoc) {
9620
9624
  const newNode = super.parseParenItem(node, startLoc);
@@ -9844,8 +9848,8 @@ var require_lib = __commonJS((exports) => {
9844
9848
  throw ((_jsx3 = jsx2) == null ? undefined : _jsx3.error) || arrow.error || ((_typeCast2 = typeCast) == null ? undefined : _typeCast2.error);
9845
9849
  }
9846
9850
  reportReservedArrowTypeParam(node) {
9847
- var _node$extra;
9848
- if (node.params.length === 1 && !node.params[0].constraint && !((_node$extra = node.extra) != null && _node$extra.trailingComma) && this.getPluginOption("typescript", "disallowAmbiguousJSXLike")) {
9851
+ var _node$extra2;
9852
+ if (node.params.length === 1 && !node.params[0].constraint && !((_node$extra2 = node.extra) != null && _node$extra2.trailingComma) && this.getPluginOption("typescript", "disallowAmbiguousJSXLike")) {
9849
9853
  this.raise(TSErrors.ReservedArrowTypeParam, node);
9850
9854
  }
9851
9855
  }
@@ -9949,7 +9953,6 @@ var require_lib = __commonJS((exports) => {
9949
9953
  case "TSParameterProperty":
9950
9954
  return "parameter";
9951
9955
  case "TSNonNullExpression":
9952
- case "TSInstantiationExpression":
9953
9956
  return "expression";
9954
9957
  case "TSAsExpression":
9955
9958
  case "TSSatisfiesExpression":
@@ -10035,14 +10038,12 @@ var require_lib = __commonJS((exports) => {
10035
10038
  }
10036
10039
  return type;
10037
10040
  }
10038
- toAssignableList(exprList, trailingCommaLoc, isLHS) {
10039
- for (let i = 0;i < exprList.length; i++) {
10040
- const expr = exprList[i];
10041
- if ((expr == null ? undefined : expr.type) === "TSTypeCastExpression") {
10042
- exprList[i] = this.typeCastToParameter(expr);
10043
- }
10041
+ toAssignableListItem(exprList, index, isLHS) {
10042
+ const node = exprList[index];
10043
+ if (node.type === "TSTypeCastExpression") {
10044
+ exprList[index] = this.typeCastToParameter(node);
10044
10045
  }
10045
- super.toAssignableList(exprList, trailingCommaLoc, isLHS);
10046
+ super.toAssignableListItem(exprList, index, isLHS);
10046
10047
  }
10047
10048
  typeCastToParameter(node) {
10048
10049
  node.expression.typeAnnotation = node.typeAnnotation;
@@ -10618,18 +10619,18 @@ var require_lib = __commonJS((exports) => {
10618
10619
  var mixinPluginNames = Object.keys(mixinPlugins);
10619
10620
 
10620
10621
  class ExpressionParser extends LValParser {
10621
- checkProto(prop, isRecord, protoRef, refExpressionErrors) {
10622
+ checkProto(prop, isRecord, sawProto, refExpressionErrors) {
10622
10623
  if (prop.type === "SpreadElement" || this.isObjectMethod(prop) || prop.computed || prop.shorthand) {
10623
- return;
10624
+ return sawProto;
10624
10625
  }
10625
10626
  const key = prop.key;
10626
10627
  const name = key.type === "Identifier" ? key.name : key.value;
10627
10628
  if (name === "__proto__") {
10628
10629
  if (isRecord) {
10629
10630
  this.raise(Errors.RecordNoProto, key);
10630
- return;
10631
+ return true;
10631
10632
  }
10632
- if (protoRef.used) {
10633
+ if (sawProto) {
10633
10634
  if (refExpressionErrors) {
10634
10635
  if (refExpressionErrors.doubleProtoLoc === null) {
10635
10636
  refExpressionErrors.doubleProtoLoc = key.loc.start;
@@ -10638,8 +10639,9 @@ var require_lib = __commonJS((exports) => {
10638
10639
  this.raise(Errors.DuplicateProto, key);
10639
10640
  }
10640
10641
  }
10641
- protoRef.used = true;
10642
+ return true;
10642
10643
  }
10644
+ return sawProto;
10643
10645
  }
10644
10646
  shouldExitDescending(expr, potentialArrowAt) {
10645
10647
  return expr.type === "ArrowFunctionExpression" && this.offsetToSourcePos(expr.start) === potentialArrowAt;
@@ -10685,9 +10687,8 @@ var require_lib = __commonJS((exports) => {
10685
10687
  parseMaybeAssignAllowIn(refExpressionErrors, afterLeftParse) {
10686
10688
  return this.allowInAnd(() => this.parseMaybeAssign(refExpressionErrors, afterLeftParse));
10687
10689
  }
10688
- setOptionalParametersError(refExpressionErrors, resultError) {
10689
- var _resultError$loc;
10690
- refExpressionErrors.optionalParametersLoc = (_resultError$loc = resultError == null ? undefined : resultError.loc) != null ? _resultError$loc : this.state.startLoc;
10690
+ setOptionalParametersError(refExpressionErrors) {
10691
+ refExpressionErrors.optionalParametersLoc = this.state.startLoc;
10691
10692
  }
10692
10693
  parseMaybeAssign(refExpressionErrors, afterLeftParse) {
10693
10694
  const startLoc = this.state.startLoc;
@@ -11679,7 +11680,7 @@ var require_lib = __commonJS((exports) => {
11679
11680
  }
11680
11681
  const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody;
11681
11682
  this.state.inFSharpPipelineDirectBody = false;
11682
- const propHash = Object.create(null);
11683
+ let sawProto = false;
11683
11684
  let first = true;
11684
11685
  const node = this.startNode();
11685
11686
  node.properties = [];
@@ -11699,7 +11700,7 @@ var require_lib = __commonJS((exports) => {
11699
11700
  prop = this.parseBindingProperty();
11700
11701
  } else {
11701
11702
  prop = this.parsePropertyDefinition(refExpressionErrors);
11702
- this.checkProto(prop, isRecord, propHash, refExpressionErrors);
11703
+ sawProto = this.checkProto(prop, isRecord, sawProto, refExpressionErrors);
11703
11704
  }
11704
11705
  if (isRecord && !this.isObjectProperty(prop) && prop.type !== "SpreadElement") {
11705
11706
  this.raise(Errors.InvalidRecordProperty, prop);
@@ -12701,14 +12702,8 @@ var require_lib = __commonJS((exports) => {
12701
12702
  let result;
12702
12703
  if (startType === 83) {
12703
12704
  result = this.parseImport(node);
12704
- if (result.type === "ImportDeclaration" && (!result.importKind || result.importKind === "value")) {
12705
- this.sawUnambiguousESM = true;
12706
- }
12707
12705
  } else {
12708
12706
  result = this.parseExport(node, decorators);
12709
- if (result.type === "ExportNamedDeclaration" && (!result.exportKind || result.exportKind === "value") || result.type === "ExportAllDeclaration" && (!result.exportKind || result.exportKind === "value") || result.type === "ExportDefaultDeclaration") {
12710
- this.sawUnambiguousESM = true;
12711
- }
12712
12707
  }
12713
12708
  this.assertModuleNodeAllowed(result);
12714
12709
  return result;
@@ -13627,6 +13622,7 @@ var require_lib = __commonJS((exports) => {
13627
13622
  throw this.raise(Errors.UnsupportedDecoratorExport, node);
13628
13623
  }
13629
13624
  this.parseExportFrom(node, true);
13625
+ this.sawUnambiguousESM = true;
13630
13626
  return this.finishNode(node, "ExportAllDeclaration");
13631
13627
  }
13632
13628
  const hasSpecifiers = this.maybeParseExportNamedSpecifiers(node);
@@ -13655,6 +13651,7 @@ var require_lib = __commonJS((exports) => {
13655
13651
  } else if (decorators) {
13656
13652
  throw this.raise(Errors.UnsupportedDecoratorExport, node);
13657
13653
  }
13654
+ this.sawUnambiguousESM = true;
13658
13655
  return this.finishNode(node2, "ExportNamedDeclaration");
13659
13656
  }
13660
13657
  if (this.eat(65)) {
@@ -13667,6 +13664,7 @@ var require_lib = __commonJS((exports) => {
13667
13664
  throw this.raise(Errors.UnsupportedDecoratorExport, node);
13668
13665
  }
13669
13666
  this.checkExport(node2, true, true);
13667
+ this.sawUnambiguousESM = true;
13670
13668
  return this.finishNode(node2, "ExportDefaultDeclaration");
13671
13669
  }
13672
13670
  this.unexpected(null, 5);
@@ -13705,10 +13703,12 @@ var require_lib = __commonJS((exports) => {
13705
13703
  const isTypeExport = node2.exportKind === "type";
13706
13704
  node2.specifiers.push(...this.parseExportSpecifiers(isTypeExport));
13707
13705
  node2.source = null;
13708
- node2.declaration = null;
13709
13706
  if (this.hasPlugin("importAssertions")) {
13710
13707
  node2.assertions = [];
13708
+ } else {
13709
+ node2.attributes = [];
13711
13710
  }
13711
+ node2.declaration = null;
13712
13712
  return true;
13713
13713
  }
13714
13714
  return false;
@@ -13719,6 +13719,8 @@ var require_lib = __commonJS((exports) => {
13719
13719
  node.source = null;
13720
13720
  if (this.hasPlugin("importAssertions")) {
13721
13721
  node.assertions = [];
13722
+ } else {
13723
+ node.attributes = [];
13722
13724
  }
13723
13725
  node.declaration = this.parseExportDeclaration(node);
13724
13726
  return true;
@@ -14087,6 +14089,7 @@ var require_lib = __commonJS((exports) => {
14087
14089
  this.checkImportReflection(node);
14088
14090
  this.checkJSONModuleImport(node);
14089
14091
  this.semicolon();
14092
+ this.sawUnambiguousESM = true;
14090
14093
  return this.finishNode(node, "ImportDeclaration");
14091
14094
  }
14092
14095
  parseImportSource() {
@@ -1,10 +1,10 @@
1
1
  // @bun
2
2
  import {
3
3
  route
4
- } from "./chunk-42a3e7hh.js";
5
- import"./chunk-td8tcbm5.js";
4
+ } from "./chunk-1rcr814r.js";
5
+ import"./chunk-mm6thy3f.js";
6
6
  import"./chunk-fxan91t8.js";
7
- import"./chunk-nm3scdc6.js";
7
+ import"./chunk-w6fdq4hk.js";
8
8
  import"./chunk-wkwtsvym.js";
9
9
  import"./chunk-9v6qtbez.js";
10
10
 
@@ -1,9 +1,9 @@
1
1
  // @bun
2
2
  import {
3
3
  seed
4
- } from "../chunk-td8tcbm5.js";
4
+ } from "../chunk-mm6thy3f.js";
5
5
  import"../chunk-fxan91t8.js";
6
- import"../chunk-nm3scdc6.js";
6
+ import"../chunk-w6fdq4hk.js";
7
7
  import"../chunk-wkwtsvym.js";
8
8
  import"../chunk-9v6qtbez.js";
9
9
 
@@ -3,7 +3,7 @@
3
3
  import {
4
4
  generateComponentMeta
5
5
  } from "../helpers/component-meta.js";
6
- import"../chunk-nm3scdc6.js";
6
+ import"../chunk-w6fdq4hk.js";
7
7
  import"../chunk-9v6qtbez.js";
8
8
 
9
9
  // src/generate/component-meta.ts
@@ -1,16 +1,16 @@
1
1
  // @bun
2
2
  import {
3
3
  route
4
- } from "../chunk-42a3e7hh.js";
4
+ } from "../chunk-1rcr814r.js";
5
5
  import {
6
6
  generateVsCodeCustomData
7
7
  } from "../helpers/vscode-custom-data.js";
8
8
  import"../chunk-494jp8d5.js";
9
9
  import {
10
10
  generateModelFiles
11
- } from "../chunk-td8tcbm5.js";
11
+ } from "../chunk-mm6thy3f.js";
12
12
  import"../chunk-fxan91t8.js";
13
- import"../chunk-nm3scdc6.js";
13
+ import"../chunk-w6fdq4hk.js";
14
14
  import"../chunk-wkwtsvym.js";
15
15
  import"../chunk-ze46550n.js";
16
16
  import {
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  import {
3
3
  require_lib
4
- } from "../chunk-nm3scdc6.js";
4
+ } from "../chunk-w6fdq4hk.js";
5
5
  import {
6
6
  __commonJS,
7
7
  __export,
@@ -189494,8 +189494,7 @@ var require_cjs = __commonJS((exports, module) => {
189494
189494
  return SubscriberFlags2;
189495
189495
  })(SubscriberFlags || {});
189496
189496
  function createReactiveSystem({ updateComputed, notifyEffect: notifyEffect2 }) {
189497
- let queuedEffects;
189498
- let queuedEffectsTail;
189497
+ const queuedEffects = [];
189499
189498
  return { link(dep, sub) {
189500
189499
  const currentDep = sub.depsTail;
189501
189500
  if (currentDep !== undefined && currentDep.dep === dep) {
@@ -189534,22 +189533,12 @@ var require_cjs = __commonJS((exports, module) => {
189534
189533
  continue;
189535
189534
  }
189536
189535
  if (subFlags & 2) {
189537
- if (queuedEffectsTail !== undefined) {
189538
- queuedEffectsTail.depsTail.nextDep = sub.deps;
189539
- } else {
189540
- queuedEffects = sub;
189541
- }
189542
- queuedEffectsTail = sub;
189536
+ queuedEffects.push(sub);
189543
189537
  }
189544
189538
  } else if (!(subFlags & (4 | targetFlag))) {
189545
189539
  sub.flags = subFlags | targetFlag | 8;
189546
189540
  if ((subFlags & (2 | 8)) === 2) {
189547
- if (queuedEffectsTail !== undefined) {
189548
- queuedEffectsTail.depsTail.nextDep = sub.deps;
189549
- } else {
189550
- queuedEffects = sub;
189551
- }
189552
- queuedEffectsTail = sub;
189541
+ queuedEffects.push(sub);
189553
189542
  }
189554
189543
  } else if (!(subFlags & targetFlag) && subFlags & 224 && isValidLink(link22, sub)) {
189555
189544
  sub.flags = subFlags | targetFlag;
@@ -189619,17 +189608,8 @@ var require_cjs = __commonJS((exports, module) => {
189619
189608
  } while (link22 !== undefined);
189620
189609
  }
189621
189610
  }, processEffectNotifications() {
189622
- while (queuedEffects !== undefined) {
189623
- const effect2 = queuedEffects;
189624
- const depsTail = effect2.depsTail;
189625
- const queuedNext = depsTail.nextDep;
189626
- if (queuedNext !== undefined) {
189627
- depsTail.nextDep = undefined;
189628
- queuedEffects = queuedNext.sub;
189629
- } else {
189630
- queuedEffects = undefined;
189631
- queuedEffectsTail = undefined;
189632
- }
189611
+ while (queuedEffects.length) {
189612
+ const effect2 = queuedEffects.shift();
189633
189613
  if (!notifyEffect2(effect2)) {
189634
189614
  effect2.flags &= ~8;
189635
189615
  }
@@ -189729,12 +189709,7 @@ var require_cjs = __commonJS((exports, module) => {
189729
189709
  if ((subFlags & (64 | 32)) === 64) {
189730
189710
  sub.flags = subFlags | 32 | 8;
189731
189711
  if ((subFlags & (2 | 8)) === 2) {
189732
- if (queuedEffectsTail !== undefined) {
189733
- queuedEffectsTail.depsTail.nextDep = sub.deps;
189734
- } else {
189735
- queuedEffects = sub;
189736
- }
189737
- queuedEffectsTail = sub;
189712
+ queuedEffects.push(sub);
189738
189713
  }
189739
189714
  }
189740
189715
  link22 = link22.nextSub;
package/dist/index.js CHANGED
@@ -41,12 +41,12 @@ import {
41
41
  generateWebTypes,
42
42
  invoke
43
43
  } from "./generate/index.js";
44
- import"./chunk-42a3e7hh.js";
44
+ import"./chunk-1rcr814r.js";
45
45
  import"./helpers/vscode-custom-data.js";
46
46
  import"./chunk-494jp8d5.js";
47
- import"./chunk-td8tcbm5.js";
47
+ import"./chunk-mm6thy3f.js";
48
48
  import"./chunk-fxan91t8.js";
49
- import"./chunk-nm3scdc6.js";
49
+ import"./chunk-w6fdq4hk.js";
50
50
  import"./chunk-wkwtsvym.js";
51
51
  import {
52
52
  runApiDevServer,
package/dist/release.js CHANGED
@@ -5,12 +5,12 @@ import"./commit.js";
5
5
  import"./make.js";
6
6
  import"./add.js";
7
7
  import"./generate/index.js";
8
- import"./chunk-42a3e7hh.js";
8
+ import"./chunk-1rcr814r.js";
9
9
  import"./helpers/vscode-custom-data.js";
10
10
  import"./chunk-494jp8d5.js";
11
- import"./chunk-td8tcbm5.js";
11
+ import"./chunk-mm6thy3f.js";
12
12
  import"./chunk-fxan91t8.js";
13
- import"./chunk-nm3scdc6.js";
13
+ import"./chunk-w6fdq4hk.js";
14
14
  import"./chunk-wkwtsvym.js";
15
15
  import"./dev/index.js";
16
16
  import"./chunk-ze46550n.js";
package/dist/upgrade.js CHANGED
@@ -9,7 +9,7 @@ import { log } from "@stacksjs/logging";
9
9
  import { projectPath } from "@stacksjs/path";
10
10
  import * as storage from "@stacksjs/storage";
11
11
  // package.json
12
- var version = "0.70.0";
12
+ var version = "0.70.2";
13
13
 
14
14
  // src/upgrade.ts
15
15
  function checkForUncommittedChanges(options) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.70.0",
4
+ "version": "0.70.2",
5
5
  "description": "The Stacks actions.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": ["Chris Breuer <chris@stacksjs.org>"],
@@ -42,22 +42,22 @@
42
42
  "prepublishOnly": "bun run build"
43
43
  },
44
44
  "devDependencies": {
45
- "@stacksjs/api": "0.70.0",
46
- "@stacksjs/cli": "0.70.0",
47
- "@stacksjs/config": "0.70.0",
48
- "@stacksjs/database": "0.70.0",
49
- "@stacksjs/development": "0.70.0",
50
- "@stacksjs/dns": "0.70.0",
51
- "@stacksjs/enums": "0.70.0",
52
- "@stacksjs/env": "0.70.0",
53
- "@stacksjs/error-handling": "0.70.0",
54
- "@stacksjs/logging": "0.70.0",
55
- "@stacksjs/path": "0.70.0",
56
- "@stacksjs/security": "0.70.0",
57
- "@stacksjs/storage": "0.70.0",
58
- "@stacksjs/strings": "0.70.0",
59
- "@stacksjs/utils": "0.70.0",
60
- "@stacksjs/validation": "0.70.0",
45
+ "@stacksjs/api": "0.70.1",
46
+ "@stacksjs/cli": "0.70.1",
47
+ "@stacksjs/config": "0.70.1",
48
+ "@stacksjs/database": "0.70.1",
49
+ "@stacksjs/development": "0.70.1",
50
+ "@stacksjs/dns": "0.70.1",
51
+ "@stacksjs/enums": "0.70.1",
52
+ "@stacksjs/env": "0.70.1",
53
+ "@stacksjs/error-handling": "0.70.1",
54
+ "@stacksjs/logging": "0.70.1",
55
+ "@stacksjs/path": "0.70.1",
56
+ "@stacksjs/security": "0.70.1",
57
+ "@stacksjs/storage": "0.70.1",
58
+ "@stacksjs/strings": "0.70.1",
59
+ "@stacksjs/utils": "0.70.1",
60
+ "@stacksjs/validation": "0.70.1",
61
61
  "markdown-it": "^14.1.0",
62
62
  "vue-component-meta": "^2.2.8"
63
63
  }