diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-05-05 14:30:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 14:30:14 +0200 |
commit | 55cd3a44368d529326b6d9b16ff7c0204fee5516 (patch) | |
tree | 99da74013ccf0aedc382d15dcbbf9cac21d45d66 /build/tasks/amd.js | |
parent | 297d18dd13f7b810ea5a4afeefa4cb15d9e16e16 (diff) | |
download | jquery-55cd3a44368d529326b6d9b16ff7c0204fee5516.tar.gz jquery-55cd3a44368d529326b6d9b16ff7c0204fee5516.zip |
Build: Followups after introducing ES modules compiled via Rollup
This commit cleans up a few comments & configurations that are out of date
after the migration to ES modules backed by a Rollup-based compilation.
Also, de-indent AMD modules. This will preserve a more similar
structure to the one on 3.x-stable where the body of the main `define`
wrapper is not indented.
Closes gh-4705
Diffstat (limited to 'build/tasks/amd.js')
-rw-r--r-- | build/tasks/amd.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/tasks/amd.js b/build/tasks/amd.js index 617773ff2..c4c9c8941 100644 --- a/build/tasks/amd.js +++ b/build/tasks/amd.js @@ -19,7 +19,8 @@ module.exports = function( grunt ) { const outputRollupOptions = { format: "amd", - dir: "amd" + dir: "amd", + indent: false }; grunt.registerTask( |