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

quill-better-table

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quill-better-table - npm Package Compare versions

Comparing version 1.1.9 to 1.1.10

dist/quill-better-table.min.js

11

package.json
{
"name": "quill-better-table",
"version": "1.1.9",
"version": "1.1.10",
"description": "Module for better table in Quill, more useful features are supported.",

@@ -8,3 +8,3 @@ "main": "dist/quill-better-table.js",

"dev": "webpack-dev-server --config webpack.config.js --mode=development",
"build": "webpack --config webpack.config.js --mode=production",
"build": "webpack --config webpack.config.js --mode=production --env.minimize; webpack --config webpack.config.js --mode=production; rm dist/quill-better-table;",
"test": "echo \"Error: no test specified\" && exit 1"

@@ -32,5 +32,6 @@ },

"quill": "^2.0.0-dev.3",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"css-loader": "^2.1.1",

@@ -37,0 +38,0 @@ "file-loader": "^3.0.1",

@@ -8,8 +8,23 @@ const path = require('path');

const isProduction = argv.mode === 'production'
let entry, minimize
return {
entry:{
if (env && env.minimize) {
entry = {
'quill-better-table.min.js': ['./src/quill-better-table.js']
}
minimize = true
} else {
entry = {
'quill-better-table.js': ['./src/quill-better-table.js'],
'quill-better-table': ['./src/assets/quill-better-table.scss'],
'quill-better-table': './src/assets/quill-better-table.scss',
'demo/demo1.js': './demo/js/demo1.js'
}
minimize = false
}
return {
entry,
optimization: {
minimize
},

@@ -85,3 +100,3 @@

[
'env',
'@babel/env',
{

@@ -88,0 +103,0 @@ targets: {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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