Browse Source

Fix Tools Gen

sebastien 6 years ago
parent
commit
b500f2bd01
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Tools/Gulp/helpers/gulp-processAmdDeclarationToModule.js

+ 1 - 1
Tools/Gulp/helpers/gulp-processAmdDeclarationToModule.js

@@ -57,7 +57,7 @@ var processData = function(data, options) {
 
     // Add Entry point.
     str += `declare module "${moduleName}" {
-    export * from "${moduleName}/${entryPoint.replace("./","").replace(".ts", "")}";
+    export * from "${moduleName}/${entryPoint.replace(/\.\//g,"").replace(".ts", "")}";
 }`;
 
     return str;