Cloud Defense Logo

Products

Solutions

Company

Book A Live Demo

Top 2 Examples of "git-revision-webpack-plugin in functional component" in JavaScript

Dive into secure and efficient coding practices with our curated list of the top 10 examples showcasing 'git-revision-webpack-plugin' in functional components in JavaScript. Our advanced machine learning engine meticulously scans each line of code, cross-referencing millions of open source libraries to ensure your implementation is not just functional, but also robust and secure. Elevate your React applications to new heights by mastering the art of handling side effects, API calls, and asynchronous operations with confidence and precision.

import 'babel-polyfill';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import BrowserSyncPlugin from 'browser-sync-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
import UglifyJsPlugin from 'uglifyjs-webpack-plugin';
import GitRevisionPlugin from 'git-revision-webpack-plugin';
import webpack from 'webpack';

const env = process.env.NODE_ENV || 'development';
const port = process.env.PORT || 4444;
const gitRevisionPlugin = new GitRevisionPlugin({ lightweightTags: true });

const config = {
    entry: {
        index: [
            './src/client/js/index.js',
            './src/client/css/main.scss',
        ],
    },
    output: {
        path: `${__dirname}/public/static/`,
        filename: (env === 'production') ? 'bundle-[hash].js' : 'bundle.js',
        publicPath: '/',
    },
    module: {
        rules: [
            { test: /\.html$/, use: 'html-loader?minimize=false' },
config.plugin('extract')
  .use(MiniCssExtractPlugin, [{
    filename: '[name].css',
  }]);

config.plugin('copy')
  .use(CopyWebpackPlugin, [[
    {
      from: src.common('icons', '*.png'),
      flatten: true,
    },
  ], {
    copyUnmodified: true,
  }]);

const revision = new GitRevisionPlugin();

config.plugin('revision')
  .use(revision);

config.plugin('define')
  .after('revision')
  .use(DefinePlugin, [{
    COMMITHASH: JSON.stringify(revision.commithash()),
  }]);

config.plugin('notifier')
  .use(NotifierPlugin, [{
    title: 'Tickety-Tick Build',
  }]);

config.devtool('source-map');

Is your System Free of Underlying Vulnerabilities?
Find Out Now