@widgetti/solara-vuetify-app 6.1.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@widgetti/solara-vuetify-app",
3
- "version": "6.1.0",
3
+ "version": "7.0.0",
4
4
  "description": "Solara Vuetify App",
5
5
  "main": "dist/solara-vuetify-app.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "webpack",
9
9
  "watch": "webpack --watch --mode=development",
10
- "devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/solara-vuetify-app@6.1.0/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist"
10
+ "devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/solara-vuetify-app@7.0.0/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist"
11
11
  },
12
12
  "author": "",
13
13
  "license": "MIT",
package/webpack.config.js CHANGED
@@ -46,7 +46,7 @@ module.exports = [
46
46
  mode: 'production',
47
47
  },
48
48
  {
49
- plugins: [new MiniCssExtractPlugin()],
49
+ plugins: [new MiniCssExtractPlugin({filename: 'main7.css'})],
50
50
  entry: './src/solara-vuetify-app.js',
51
51
  output: {
52
52
  filename: 'solara-vuetify-app7.min.js',
@@ -60,7 +60,7 @@ module.exports = [
60
60
  mode: 'production',
61
61
  },
62
62
  {
63
- plugins: [new MiniCssExtractPlugin()],
63
+ plugins: [new MiniCssExtractPlugin({filename: 'main7.css'})],
64
64
  entry: './src/solara-vuetify-app.js',
65
65
  output: {
66
66
  filename: 'solara-vuetify-app7.js',
@@ -75,7 +75,7 @@ module.exports = [
75
75
  mode: 'development',
76
76
  },
77
77
  {
78
- plugins: [new MiniCssExtractPlugin(), ...analyzerPlugins],
78
+ plugins: [new MiniCssExtractPlugin({filename: 'main8.css'}), ...analyzerPlugins],
79
79
  entry: './src/solara-vuetify-app.js',
80
80
  output: {
81
81
  filename: 'solara-vuetify-app8.min.js',
@@ -105,7 +105,7 @@ module.exports = [
105
105
  },
106
106
  mode: 'production',
107
107
  }, {
108
- plugins: [new MiniCssExtractPlugin()],
108
+ plugins: [new MiniCssExtractPlugin({filename: 'main8.css'})],
109
109
  entry: './src/solara-vuetify-app.js',
110
110
  output: {
111
111
  filename: 'solara-vuetify-app8.js',
File without changes