@mpxjs/mpx-cli-service 2.2.21 → 2.2.28

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/lib/Service.js +2 -2
  2. package/package.json +2 -2
package/lib/Service.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const Service = require('@vue/cli-service')
2
- const { getServerBundle } = require('@mpxjs/cli-shared-utils')
2
+ const sharedUtils = require('@mpxjs/cli-shared-utils')
3
3
  const Config = require('webpack-chain')
4
4
  const PluginAPI = require('@vue/cli-service/lib/PluginAPI')
5
5
 
@@ -41,4 +41,4 @@ PluginAPI.prototype.runAfterResolveWebpackCallBack = async function (...args) {
41
41
 
42
42
  module.exports = Service
43
43
 
44
- module.exports.getServerBundle = getServerBundle
44
+ module.exports.sharedUtils = sharedUtils
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@mpxjs/mpx-cli-service",
3
- "version": "2.2.21",
3
+ "version": "2.2.28",
4
4
  "description": "local service for mpx-cli project",
5
5
  "main": "lib/Service.js",
6
6
  "bin": {
7
7
  "mpx-cli-service": "bin/mpx-cli-service.js"
8
8
  },
9
9
  "dependencies": {
10
- "@mpxjs/cli-shared-utils": "^2.2.21",
10
+ "@mpxjs/cli-shared-utils": "^2.2.28",
11
11
  "@vue/cli-service": "^5.0.0",
12
12
  "@vue/cli-shared-utils": "^5.0.4",
13
13
  "minimist": "^1.2.5"