@steedos/service-object-graphql 2.4.8-beta.5 → 2.4.8

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": "@steedos/service-object-graphql",
3
- "version": "2.4.8-beta.5",
3
+ "version": "2.4.8",
4
4
  "main": "package.service.js",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -15,10 +15,10 @@
15
15
  "description": "steedos package",
16
16
  "repository": {},
17
17
  "license": "MIT",
18
- "gitHead": "bdac32fcaa8c296d51489c867da08a0a64dd70cc",
18
+ "gitHead": "355939fd49a9171c8531433d487385f07b235c86",
19
19
  "dependencies": {
20
- "@steedos/i18n": "2.4.8-beta.5",
21
- "@steedos/objectql": "2.4.8-beta.5",
20
+ "@steedos/i18n": "2.4.8",
21
+ "@steedos/objectql": "2.4.8",
22
22
  "graphql": "^15.8.0",
23
23
  "graphql-parse-resolve-info": "^4.12.3",
24
24
  "moleculer": "^0.14.25",
@@ -2,7 +2,7 @@
2
2
  * @Author: sunhaolin@hotoa.com
3
3
  * @Date: 2023-03-23 15:12:14
4
4
  * @LastEditors: sunhaolin@hotoa.com
5
- * @LastEditTime: 2023-03-29 13:18:59
5
+ * @LastEditTime: 2023-03-29 14:59:59
6
6
  * @Description:
7
7
  */
8
8
 
@@ -313,7 +313,7 @@ module.exports = {
313
313
  console.log('');
314
314
  console.log(`Project is running at ${process.env.ROOT_URL}`);
315
315
  console.log('');
316
- if (process.env.STEEDOS_AUTO_OPEN_BROWSER == 'true') { // 默认不打开
316
+ if (process.env.STEEDOS_AUTO_OPEN_BROWSER != 'false') { // 默认打开,如果不想打开,设置STEEDOS_AUTO_OPEN_BROWSER=false
317
317
  try {
318
318
  open(process.env.ROOT_URL);
319
319
  } catch (error) {