fix: 修复在Windows下require插件报错的问题
This commit is contained in:
		
							
								
								
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							@@ -3,7 +3,7 @@
 | 
			
		||||
    <modelVersion>4.0.0</modelVersion>
 | 
			
		||||
    <groupId>pw.yumc</groupId>
 | 
			
		||||
    <artifactId>MiaoScript</artifactId>
 | 
			
		||||
    <version>1.1.2</version>
 | 
			
		||||
    <version>1.1.3</version>
 | 
			
		||||
    <developers>
 | 
			
		||||
        <developer>
 | 
			
		||||
            <id>502647092</id>
 | 
			
		||||
 
 | 
			
		||||
@@ -89,7 +89,7 @@
 | 
			
		||||
        if (optional.hook) {
 | 
			
		||||
            origin = optional.hook(origin);
 | 
			
		||||
        }
 | 
			
		||||
        base.save(cacheFile, "(function (module, exports, require, __DIR__, __FILE__) {" + origin + "});");
 | 
			
		||||
        base.save(cacheFile, "(function (module, exports, require, __dirname, __filename) {" + origin + "});");
 | 
			
		||||
        // 使用 load 可以保留行号和文件名称
 | 
			
		||||
        var obj = load(cacheFile);
 | 
			
		||||
        base.delete(cacheFile);
 | 
			
		||||
@@ -149,7 +149,7 @@
 | 
			
		||||
     * @private
 | 
			
		||||
     */
 | 
			
		||||
    function _require(name, path, optional) {
 | 
			
		||||
        var file = resolve(name, path);
 | 
			
		||||
        var file = _canonical(name) ? name : resolve(name, path);
 | 
			
		||||
        if (file === undefined) {
 | 
			
		||||
            log.console("§c模块 §a%s §c加载失败! §4未找到该模块!", name);
 | 
			
		||||
            return {exports:{}};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user