]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
rollup config: tabs to spaces
authorMarc Tobias <mtmail@gmx.net>
Wed, 16 Nov 2022 11:36:10 +0000 (12:36 +0100)
committermtmail <mtmail@gmx.net>
Wed, 16 Nov 2022 11:53:46 +0000 (12:53 +0100)
rollup.config.js

index b3a25b4bf19cc23f89af9cb14a4d8494027a29e8..db42070d2ef196cf1c6e391557d54a48a968c0e5 100644 (file)
@@ -9,78 +9,78 @@ import { readFileSync, writeFileSync } from 'fs';
 const production = !process.env.ROLLUP_WATCH;
 
 function serve() {
-       let server;
+  let server;
 
-       function toExit() {
-               if (server) server.kill(0);
-       }
+  function toExit() {
+    if (server) server.kill(0);
+  }
 
-       return {
-               writeBundle() {
-                       if (server) return;
-                       server = require('child_process').spawn('yarn', ['start', '-d'], {
-                               stdio: ['ignore', 'inherit', 'inherit'],
-                               shell: true
-                       });
+  return {
+    writeBundle() {
+      if (server) return;
+      server = require('child_process').spawn('yarn', ['start', '-d'], {
+        stdio: ['ignore', 'inherit', 'inherit'],
+        shell: true
+      });
 
-                       process.on('SIGTERM', toExit);
-                       process.on('exit', toExit);
-               }
-       };
+      process.on('SIGTERM', toExit);
+      process.on('exit', toExit);
+    }
+  };
 }
 
 export default {
-       input: 'src/main.js',
-       output: {
-               sourcemap: true,
-               format: 'iife',
-               name: 'app',
-               file: 'dist/build/bundle.js'
-       },
-       plugins: [
-               svelte({
-                       compilerOptions: {
-                               // enable run-time checks when not in production
-                               dev: !production
-                       }
-               }),
-               css({
-                 output: function (styles, styleNodes) {
-                       // make sure global_styles.css gets appended to bundle.css,
-                       // not prepended.
-                       // The ':global()' rules (https://svelte.dev/docs#style) get
-                       // prepended so we can't use them to overwrite bootstrap.css
-                       // rules
-                       let global_styles = readFileSync('src/global_style.css');
-                       styles += global_styles;
-                   writeFileSync('dist/build/bundle.css', styles);
-                 }
-               }),
+  input: 'src/main.js',
+  output: {
+    sourcemap: true,
+    format: 'iife',
+    name: 'app',
+    file: 'dist/build/bundle.js'
+  },
+  plugins: [
+    svelte({
+      compilerOptions: {
+        // enable run-time checks when not in production
+        dev: !production
+      }
+    }),
+    css({
+      output: function (styles, styleNodes) {
+        // make sure global_styles.css gets appended to bundle.css,
+        // not prepended.
+        // The ':global()' rules (https://svelte.dev/docs#style) get
+        // prepended so we can't use them to overwrite bootstrap.css
+        // rules
+        let global_styles = readFileSync('src/global_style.css');
+        styles += global_styles;
+        writeFileSync('dist/build/bundle.css', styles);
+      }
+    }),
 
-               // If you have external dependencies installed from
-               // npm, you'll most likely need these plugins. In
-               // some cases you'll need additional configuration -
-               // consult the documentation for details:
-               // https://github.com/rollup/plugins/tree/master/packages/commonjs
-               resolve({
-                       browser: true,
-                       dedupe: ['svelte']
-               }),
-               commonjs(),
+    // If you have external dependencies installed from
+    // npm, you'll most likely need these plugins. In
+    // some cases you'll need additional configuration -
+    // consult the documentation for details:
+    // https://github.com/rollup/plugins/tree/master/packages/commonjs
+    resolve({
+      browser: true,
+      dedupe: ['svelte']
+    }),
+    commonjs(),
 
-               // In dev mode, call `npm run start` once
-               // the bundle has been generated
-               !production && serve(),
+    // In dev mode, call `npm run start` once
+    // the bundle has been generated
+    !production && serve(),
 
-               // Watch the `dist` directory and refresh the
-               // browser on changes when not in production
-               !production && livereload('dist'),
+    // Watch the `dist` directory and refresh the
+    // browser on changes when not in production
+    !production && livereload('dist'),
 
-               // If we're building for production (npm run build
-               // instead of npm run dev), minify
-               production && terser()
-       ],
-       watch: {
-               clearScreen: false
-       }
+    // If we're building for production (npm run build
+    // instead of npm run dev), minify
+    production && terser()
+  ],
+  watch: {
+    clearScreen: false
+  }
 };