@mappedin/mappedin-js 6.2.0 → 6.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mappedin/mappedin-js",
3
- "version": "6.2.0",
3
+ "version": "6.3.1",
4
4
  "homepage": "https://developer.mappedin.com/",
5
5
  "private": false,
6
6
  "main": "lib/esm/index.js",
@@ -33,14 +33,16 @@
33
33
  "build:start": "pnpm clean && node scripts/build.mjs && pnpm copy-styles",
34
34
  "build:prod": "cross-env NODE_ENV=production pnpm build",
35
35
  "build:watch": "pnpm clean && node scripts/build.mjs --watchChanges",
36
- "build:examples": "INTERNAL=true cross-env NODE_ENV=production pnpm build && NODE_ENV=production INTERNAL=true SDK_EXAMPLE_BUILD=true node scripts/build-examples.mjs",
36
+ "build:examples": "node ../scripts/build-examples.mjs mappedin-js --internal",
37
37
  "types": "tsc -b ./tsconfig.build.json",
38
38
  "test": "pnpm -w test",
39
+ "yalc": "yalc",
39
40
  "test:cov": "pnpm test --coverage",
40
41
  "typecheck": "tsc --noEmit --project tsconfig.json",
41
42
  "copy-styles": "cp lib/esm/index.css lib/index.css",
42
43
  "clean": "rm -rf lib/** && rm -rf lib-rn/** && rm -rf examples/dist/**",
43
- "docs": "pnpm build && typedoc",
44
+ "docs": "pnpm build && pnpm docs:build",
45
+ "docs:build": "typedoc",
44
46
  "version:ci": "pnpm version --no-commit-hooks --no-git-tag-version",
45
47
  "docs:serve": "concurrently \"pnpm docs --watch\" \"npx serve ./docs/\""
46
48
  }