@widgetti/solara-vuetify3-app 1.1.0 → 3.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-vuetify3-app",
3
- "version": "1.1.0",
3
+ "version": "3.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-vuetify3-app@1.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-vuetify3-app@3.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
@@ -42,7 +42,7 @@ module.exports = [
42
42
  mode: 'production',
43
43
  },
44
44
  {
45
- plugins: [new MiniCssExtractPlugin()],
45
+ plugins: [new MiniCssExtractPlugin({filename: 'main7.css'})],
46
46
  entry: './src/solara-vuetify-app.js',
47
47
  output: {
48
48
  filename: 'solara-vuetify-app7.min.js',
@@ -61,7 +61,7 @@ module.exports = [
61
61
  mode: 'production',
62
62
  },
63
63
  {
64
- plugins: [new MiniCssExtractPlugin()],
64
+ plugins: [new MiniCssExtractPlugin({filename: 'main7.css'})],
65
65
  entry: './src/solara-vuetify-app.js',
66
66
  output: {
67
67
  filename: 'solara-vuetify-app7.js',
@@ -81,7 +81,7 @@ module.exports = [
81
81
  mode: 'development',
82
82
  },
83
83
  {
84
- plugins: [new MiniCssExtractPlugin()],
84
+ plugins: [new MiniCssExtractPlugin({filename: 'main8.css'})],
85
85
  entry: './src/solara-vuetify-app.js',
86
86
  output: {
87
87
  filename: 'solara-vuetify-app8.min.js',
@@ -101,7 +101,7 @@ module.exports = [
101
101
  },
102
102
  mode: 'production',
103
103
  }, {
104
- plugins: [new MiniCssExtractPlugin()],
104
+ plugins: [new MiniCssExtractPlugin({filename: 'main8.css'})],
105
105
  entry: './src/solara-vuetify-app.js',
106
106
  output: {
107
107
  filename: 'solara-vuetify-app8.js',
File without changes