@openfin/core 38.81.8 → 38.81.19
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 +16 -1
- package/out/GlobalOpenFin.d.ts +0 -4
- package/out/mock-alpha.d.ts +0 -18684
- package/out/mock-beta.d.ts +0 -18684
- package/out/mock-public.d.ts +0 -18684
- package/out/mock.d.ts +0 -19143
- package/out/mock.js +0 -17341
package/package.json
CHANGED
@@ -1,11 +1,26 @@
|
|
1
1
|
{
|
2
2
|
"name": "@openfin/core",
|
3
|
-
"version": "38.81.
|
3
|
+
"version": "38.81.19",
|
4
4
|
"description": "The core renderer entry point of OpenFin",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"main": "out/mock.js",
|
7
7
|
"types": "out/mock.d.ts",
|
8
8
|
"private": false,
|
9
|
+
"scripts": {
|
10
|
+
"prebuild": "rimraf ./out",
|
11
|
+
"build:rollup": "rollup --config",
|
12
|
+
"build:copy": "cpy src/GlobalOpenFin.d.ts out --flat",
|
13
|
+
"build": "run-p build:*",
|
14
|
+
"dev:rollup": "npm run build:rollup -- --environment MODE:development",
|
15
|
+
"dev:copy": "npm run build:copy",
|
16
|
+
"dev": "run-p dev:*",
|
17
|
+
"watch": "run-p watch:*",
|
18
|
+
"watch:rollup": "npm run dev:rollup -- --watch",
|
19
|
+
"watch:copy": "npm run dev:copy",
|
20
|
+
"ci:prepublish": "of-npm prepublish",
|
21
|
+
"ci:postpublish": "of-npm postpublish",
|
22
|
+
"ci:publish": "npm publish"
|
23
|
+
},
|
9
24
|
"files": [
|
10
25
|
"out/*",
|
11
26
|
"OpenFin.d.ts",
|
package/out/GlobalOpenFin.d.ts
DELETED