0.0.8 • Published 5 years ago

vvsh v0.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

vvsh

How to start

Using npx

npx vvsh
npm install -g vvsh
vvsh

Install independent binary

Install in user mode, or install in global mode

Linux, MacOS, Windows Git-Bash

wget ""
curl ""

windows

Webpack Config

const path = require('path');

module.exports = {
  entry: './src/ghlx.ts',

  module: {
    rules: [{
        test: /.tsx?$/,
        use: 'ts-loader'
        // configFile: "./tsconfig.json"
    }]
  },
  resolve: {
    extensions: ['.tsx', '.ts', '.js']
  },
  output: {
    filename: 'ghlx.js',
    path: path.resolve(__dirname, 'webpack')
  },

  mode: "development",
//   mode: "production",
  target: "node",
  node: {
    __dirname: false,
  }
};