Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

table-dragger-resizable

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table-dragger-resizable

微萌前端公用图片预览组件

  • 1.0.9
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Installation

npm install @wm-hosp/wm-cli --save

Usage

package.json 文件配配置不同的启动命令
"scripts": {
    "start:dev": "wm-server run start:dev",
    "start:test": "wm-server run start:test",
    "start:pre": "wm-server run start:pre",
    "start:local": "wm-server run start:local",
    "start:production": "wm-server run start:production",
    "start": "wm-server run start:local",
    "build": "wm-server run build",
  },

webpack 项目中定制化配置文件

module.exports = {
  port: '3002',
  entryPath: './src/index.tsx',
  outPath: './dist',
  htmlPath: './src/index.ejs',
  srcPath: './src',
  cssModules: false,
  esModule: false, // 图片是否支持require导入
  antdTheme,
  proxy: {
    // 代理
    secure: false,
    changeOrigin: true,
    pathRewrite: {
      '^/xxx': '/xxx',
    },
    paths: {
      dev: {
        from: '/xxx',
        to: 'https://项目开发地址',
      },
      test: {
        from: '/xxx',
        to: 'https://项目测试地址',
      },
      pre: {
        from: '/xxx',
        to: 'https://项目预发地址',
      },
      production: {
        from: '/xxx',
        to: 'https://项目生产地址',
      },
      local: {
        from: '/xxx',
        to: 'http://127.0.0.1:8082',
      },
    },
  },
  webpackSetting: {
    resolve: {
      extensions: ['.tsx', '.ts', '.js', '.jsx'],
      alias: {
        '@': path.resolve(__dirname, 'src'),
        '@components': path.resolve(__dirname, 'src', 'components'),
        '@pages': path.resolve(__dirname, 'src', 'pages'),
        '@layout': path.resolve(__dirname, 'src', 'layout'),
        '@router': path.resolve(__dirname, 'src', 'router'),
        '@assets': path.resolve(__dirname, 'src', 'assets'),
        '@antd': path.resolve(
          __dirname,
          'src',
          'components',
          'antd-components'
        ),
        '@utils': path.resolve(__dirname, 'src', 'utils'),
      },
    },
  },
  //  eslint配置
  eslintSetting: {
    switch: false,
    eslintOptions: {
      emitError: false,
      emitWarning: false,
      quiet: true,
      lintDirtyModulesOnly: true,
    },
  },
};

Keywords

FAQs

Package last updated on 21 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc