@interactiveplatform/movika-manifest 1.0.0-dev.0 → 1.0.0-dev.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/README.md +12 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,9 +1,19 @@
1
1
  # Movika manifest
2
2
 
3
- description
3
+ Provides constants, types, utilities.
4
4
 
5
5
  ## Basic usage
6
6
 
7
7
  ```typescript
8
- import { type Manifest, parseManifest } from "@interactiveplatform/movika-manifest";
8
+ // Importing depending on tsconfig 'bundleResolution' value
9
+
10
+ // bundleResolution is 'Bundler'
11
+ import { ChapterError } from "@interactiveplatform/movika-manifest";
12
+ import { MOCKED_CONTROL } from "@interactiveplatform/movika-manifest/mocks";
13
+
14
+ // bundleResolution is 'node'
15
+ import { ChapterError } from "@interactiveplatform/movika-manifest/dist";
16
+ import { MOCKED_CONTROL } from "@interactiveplatform/movika-manifest/dist/mocks";
17
+
18
+ // and etc..
9
19
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@interactiveplatform/movika-manifest",
3
3
  "author": "interactiveplatform",
4
- "version": "1.0.0-dev.0",
4
+ "version": "1.0.0-dev.1",
5
5
  "license": "ISC",
6
6
  "type": "module",
7
7
  "files": [
@@ -21,6 +21,6 @@
21
21
  "./package.json": "./package.json"
22
22
  },
23
23
  "dependencies": {
24
- "uuid": "^9.0.1"
24
+ "uuid": "^9.0.0"
25
25
  }
26
26
  }