@candidstartup/infinisheet-types 0.13.0 → 0.13.1

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/index.js +1 -1
  2. package/package.json +10 -11
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { ok as ok$1, err as err$1, ResultAsync as ResultAsync$1, okAsync as okAsync$1, errAsync as errAsync$1 } from 'neverthrow';
1
+ import { ok as ok$1, err as err$1, ResultAsync as ResultAsync$1, errAsync as errAsync$1, okAsync as okAsync$1 } from 'neverthrow';
2
2
 
3
3
  function ok(value) {
4
4
  return ok$1(value);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@candidstartup/infinisheet-types",
3
3
  "private": false,
4
- "version": "0.13.0",
4
+ "version": "0.13.1",
5
5
  "description": "Common types for the InfiniSheet packages",
6
6
  "author": "Tim Wiegand <tim.wiegand@thecandidstartup.org>",
7
7
  "license": "BSD-3-Clause",
@@ -34,23 +34,22 @@
34
34
  "import": "./dist/index.js"
35
35
  }
36
36
  },
37
+ "main": "index.js",
38
+ "dependencies": {
39
+ "neverthrow": "^8.2.0"
40
+ },
37
41
  "scripts": {
38
42
  "dev": "vite",
39
43
  "clean": "rimraf {dist,temp}",
40
- "prebuild": "npm run clean",
44
+ "prebuild": "pnpm run clean",
41
45
  "typecheck": "tsc -p tsconfig.json",
42
46
  "build-tsc": "tsc -p tsconfig.build.json",
43
47
  "build-rollup": "rollup -c ../rollup.config.mjs",
44
- "build": "npm run build-rollup",
48
+ "build": "pnpm run build-rollup",
45
49
  "lint": "eslint . --report-unused-disable-directives --max-warnings 0",
46
50
  "devapi": "api-extractor run --local",
47
51
  "prodapi": "api-extractor run",
48
- "devbuild": "npm run build && npm run lint && npm run devapi",
52
+ "devbuild": "pnpm run build && pnpm run lint && pnpm run devapi",
49
53
  "test": "vitest"
50
- },
51
- "main": "index.js",
52
- "dependencies": {
53
- "neverthrow": "^8.2.0"
54
- },
55
- "gitHead": "ca46dae5575a3011416803e2b159457ecb59eaee"
56
- }
54
+ }
55
+ }