@mojir/dvala 0.0.25 → 0.0.27

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/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/cli/cli.js CHANGED
@@ -478,7 +478,7 @@ function findAllOccurrences(input, pattern) {
478
478
  }
479
479
  //#endregion
480
480
  //#region package.json
481
- var version = "0.0.25";
481
+ var version = "0.0.27";
482
482
  //#endregion
483
483
  //#region src/typeGuards/string.ts
484
484
  function isString(value, options = {}) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "overrides": {
4
4
  "file-type": "^21.3.2"
5
5
  },
6
- "version": "0.0.25",
6
+ "version": "0.0.27",
7
7
  "description": "A suspendable, time-traveling functional language for JavaScript with algebraic effects",
8
8
  "author": "Albert Mojir",
9
9
  "license": "MIT",
@@ -133,8 +133,8 @@
133
133
  "lint:no-fix": "wireit",
134
134
  "typecheck": "wireit",
135
135
  "typecheck:watch": "tsc -p ./tsconfig.compile.json --noEmit --watch",
136
- "check": "npm install && npm run lint && npm run typecheck && npm run test && npm run build && [ -n \"$CI\" ] || npm run test:e2e",
137
- "check:no-fix": "npm run lint:no-fix && npm run typecheck && npm run test && [ -n \"$CI\" ] || npm run test:e2e",
136
+ "check": "npm install && npm run lint && npm run typecheck && npm run test && npm run build",
137
+ "check:no-fix": "npm run lint:no-fix && npm run typecheck && npm run test",
138
138
  "clean": "npm run clean-dvala && npm run clean-playground && rm -rf .wireit coverage test-results vscode-dvala/out",
139
139
  "clean-dvala": "rm -rf dist build",
140
140
  "clean-playground": "rm -rf playground-builder/build playground-www/build",