Fix html convertation in desktopeditors
This commit is contained in:
parent
2f044295b6
commit
c4d4da066f
|
@ -424,10 +424,10 @@ module.exports = function(grunt) {
|
||||||
});
|
});
|
||||||
|
|
||||||
//quick workaround for build desktop version
|
//quick workaround for build desktop version
|
||||||
var apiCopyTask = grunt.option('desktop')? "copy": "copy:script";
|
var copyTask = grunt.option('desktop')? "copy": "copy:script";
|
||||||
|
|
||||||
grunt.registerTask('deploy-api', ['api-init', 'clean', apiCopyTask, 'replace:writeVersion']);
|
grunt.registerTask('deploy-api', ['api-init', 'clean', copyTask, 'replace:writeVersion']);
|
||||||
grunt.registerTask('deploy-sdk', ['sdk-init', 'clean', 'copy']);
|
grunt.registerTask('deploy-sdk', ['sdk-init', 'clean', copyTask]);
|
||||||
|
|
||||||
grunt.registerTask('deploy-sockjs', ['sockjs-init', 'clean', 'copy']);
|
grunt.registerTask('deploy-sockjs', ['sockjs-init', 'clean', 'copy']);
|
||||||
grunt.registerTask('deploy-xregexp', ['xregexp-init', 'clean', 'copy']);
|
grunt.registerTask('deploy-xregexp', ['xregexp-init', 'clean', 'copy']);
|
||||||
|
|
|
@ -48,6 +48,10 @@
|
||||||
"dest": "../deploy/sdkjs/slide/"
|
"dest": "../deploy/sdkjs/slide/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"desktop": {
|
||||||
|
"src": "../../sdkjs/common/HtmlFileInternal/AllFonts.js",
|
||||||
|
"dest": "../deploy/sdkjs/common/AllFonts.js"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue