mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
Fix DE forms
This commit is contained in:
@ -60,7 +60,10 @@ module.exports = (grunt) => {
|
||||
},
|
||||
compile: {
|
||||
options: packageFile.forms.js.requirejs.options
|
||||
}
|
||||
},
|
||||
postload: {
|
||||
options: packageFile.forms.js.postload.options
|
||||
},
|
||||
},
|
||||
|
||||
less: {
|
||||
@ -127,6 +130,10 @@ module.exports = (grunt) => {
|
||||
src: [packageFile.forms.js.requirejs.options.out],
|
||||
dest: packageFile.forms.js.requirejs.options.out
|
||||
},
|
||||
postload: {
|
||||
src: packageFile.forms.js.postload.options.out,
|
||||
dest: packageFile.forms.js.postload.options.out,
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
@ -100,6 +100,20 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"postload": {
|
||||
"options": {
|
||||
"baseUrl": "../apps/",
|
||||
"optimize": "none",
|
||||
"name": "../apps/documenteditor/forms/app_pack.js",
|
||||
"out": "../deploy/web-apps/apps/documenteditor/forms/code.js",
|
||||
"inlineText": true,
|
||||
"findNestedDependencies": false,
|
||||
"optimizeAllPluginResources": false,
|
||||
"paths": {
|
||||
"text": "../vendor/requirejs-text/text"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"less": {
|
||||
|
||||
Reference in New Issue
Block a user