Browse Source

organize dll list

Yuki Takei 7 years ago
parent
commit
99f421b278
1 changed files with 11 additions and 7 deletions
  1. 11 7
      config/webpack.dll.js

+ 11 - 7
config/webpack.dll.js

@@ -9,23 +9,27 @@ module.exports = {
   mode: 'development',
   entry: {
     dlls: [
-      'browser-bunyan', 'bunyan-format',
+      // Libraries
       'axios',
+      'babel-polyfill',
       'bootstrap-select',
+      'browser-bunyan', 'bunyan-format',
+      'codemirror', 'react-codemirror2',
       'clipboard',
       'date-fns',
+      'diff2html',
       'debug',
       'entities',
-      'react', 'react-dom', 'react-bootstrap', 'react-bootstrap-typeahead', 'react-i18next',
-      'codemirror', 'react-codemirror2', 'react-dropzone',
+      'i18next', 'i18next-browser-languagedetector',
       'jquery-slimscroll',
-      'markdown-it', 'csv-to-markdown-table',
-      'diff2html',
       'lodash', 'pako',
-      'i18next', 'i18next-browser-languagedetector',
+      'markdown-it', 'csv-to-markdown-table',
+      'react', 'react-dom',
+      'react-bootstrap', 'react-bootstrap-typeahead', 'react-i18next', 'react-dropzone',
       'socket.io-client',
       'toastr',
       'xss',
+      // GROWI Libraries
       'growi-pluginkit',
     ]
   },
@@ -43,5 +47,5 @@ module.exports = {
       path: helpers.root('public/dll/manifest.json'),
       name: 'growi_dlls'
     })
-  ]
+  ],
 };