startupjs 0.59.0-canary.1 → 0.59.0-canary.11

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/package.json +12 -7
  2. package/startWorker.js +2 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "startupjs",
3
3
  "type": "module",
4
- "version": "0.59.0-canary.1",
4
+ "version": "0.59.0-canary.11",
5
5
  "engines": {
6
6
  "node": ">= 14"
7
7
  },
@@ -12,6 +12,7 @@
12
12
  "./server": "./server.js",
13
13
  "./schema": "./schema.js",
14
14
  "./startServer": "./startServer.js",
15
+ "./startWorker": "./startWorker.js",
15
16
  "./registry": "./registry.js",
16
17
  "./nodeRegister": "./nodeRegister.js",
17
18
  "./nconf": "./nconf.js",
@@ -28,25 +29,29 @@
28
29
  "license": "MIT",
29
30
  "dependencies": {
30
31
  "@startupjs/babel-plugin-rn-stylename-to-style": "^0.59.0-canary.0",
31
- "@startupjs/bundler": "^0.59.0-canary.1",
32
- "@startupjs/cli": "^0.59.0-canary.0",
32
+ "@startupjs/bundler": "^0.59.0-canary.10",
33
+ "@startupjs/cli": "^0.59.0-canary.10",
33
34
  "@startupjs/hooks": "^0.59.0-canary.0",
34
35
  "@startupjs/isomorphic-helpers": "^0.59.0-canary.0",
35
36
  "@startupjs/registry": "^0.59.0-canary.0",
36
- "@startupjs/server": "^0.59.0-canary.1",
37
+ "@startupjs/server": "^0.59.0-canary.10",
37
38
  "@startupjs/utils": "^0.59.0-canary.0",
38
- "babel-preset-startupjs": "^0.59.0-canary.1",
39
+ "babel-preset-startupjs": "^0.59.0-canary.10",
39
40
  "lodash": "^4.17.20",
40
- "teamplay": "^0.3.23"
41
+ "teamplay": "^0.3.24"
41
42
  },
42
43
  "peerDependencies": {
44
+ "@startupjs/worker": "*",
43
45
  "react": "*",
44
46
  "react-native": "*"
45
47
  },
46
48
  "peerDependenciesMeta": {
49
+ "@startupjs/worker": {
50
+ "optional": true
51
+ },
47
52
  "react-native": {
48
53
  "optional": true
49
54
  }
50
55
  },
51
- "gitHead": "1fd1ce740fdcf11cefe7aa04c68d124eb19f57fb"
56
+ "gitHead": "826ba30fcc9808d2cd0f0f922f47cb8290528982"
52
57
  }
package/startWorker.js ADDED
@@ -0,0 +1,2 @@
1
+ import startWorker from '@startupjs/worker'
2
+ await startWorker()