Browse Source

重新引入mplive-plugin

ldh 2 năm trước cách đây
mục cha
commit
3094cb7a03
1 tập tin đã thay đổi với 0 bổ sung32 xóa
  1. 0 32
      sheep/libs/mpLive-manifest-plugin.js

+ 0 - 32
sheep/libs/mpLive-manifest-plugin.js

@@ -1,32 +0,0 @@
-const fs = require('fs');
-
-const manifestPath = process.env.UNI_INPUT_DIR + '/manifest.json';
-
-let Manifest = fs.readFileSync(manifestPath, {
-	encoding: 'utf-8'
-});
-
-function mpliveMainfestPlugin(isOpen) {
-	if (process.env.UNI_PLATFORM !== 'mp-weixin') return;
-
-	const manifestData = JSON.parse(Manifest)
-
-	if (isOpen === '0') {
-		delete manifestData['mp-weixin'].plugins['live-player-plugin'];
-	}
-
-	if (isOpen === '1') {
-		manifestData['mp-weixin'].plugins['live-player-plugin'] = {
-			"version": "1.3.5",
-			"provider": "wx2b03c6e691cd7370"
-		}
-	}
-
-	Manifest = JSON.stringify(manifestData, null, 2)
-
-	fs.writeFileSync(manifestPath, Manifest, {
-		"flag": "w"
-	})
-}
-
-export default mpliveMainfestPlugin