pankosmia-rcl 0.1.14 → 0.1.16
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/build/pankosmia-rcl.es.js +49509 -0
- package/build/pankosmia-rcl.umd.js +409 -0
- package/package.json +13 -11
- package/vite.config.js +13 -5
- package/build/assets/index-BzpLSizH.css +0 -1
- package/build/assets/index-KClhwqu0.js +0 -306
- package/build/assets/manifest-DNT_3uC9.json +0 -15
package/package.json
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pankosmia-rcl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"private": false,
|
|
5
5
|
"homepage": "/clients/core-client-rcl",
|
|
6
6
|
"main": "build/pankosmia-rcl.umd.js",
|
|
7
7
|
"module": "build/pankosmia-rcl.es.js",
|
|
8
|
-
|
|
9
8
|
"dependencies": {
|
|
10
|
-
"
|
|
9
|
+
"@emotion/react": "^11.13.3",
|
|
10
|
+
"@emotion/styled": "^11.13.0",
|
|
11
|
+
"@mui/icons-material": "^6.2.1",
|
|
12
|
+
"@mui/material": "^6.2.1",
|
|
13
|
+
"eslint-config-react-app": "^7.0.1",
|
|
11
14
|
"pithekos-lib": "^0.11.4",
|
|
12
15
|
"react": "^17.0.0 || ^18.0.0",
|
|
13
16
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
14
17
|
},
|
|
15
18
|
"devDependencies": {
|
|
16
|
-
"
|
|
17
|
-
"@vitejs/plugin-react": "^4.3.4"
|
|
19
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
20
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
21
|
+
"react-scripts": "5.0.1",
|
|
22
|
+
"vite": "^6.0.7"
|
|
18
23
|
},
|
|
19
24
|
"peerDependencies": {
|
|
20
|
-
"@emotion/react": "^11.13.3",
|
|
21
|
-
"@emotion/styled": "^11.13.0",
|
|
22
|
-
"@mui/icons-material": "^6.2.1",
|
|
23
|
-
"@mui/material": "^6.2.1",
|
|
24
25
|
"react": "^17.0.0 || ^18.0.0",
|
|
25
26
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
26
27
|
},
|
|
27
28
|
"scripts": {
|
|
28
|
-
"
|
|
29
|
+
"start": "react-scripts start",
|
|
30
|
+
"build": "react-scripts build",
|
|
29
31
|
"build:vite": "vite build",
|
|
30
32
|
"build:package": "vite build",
|
|
31
33
|
"dev": "vite",
|
|
@@ -49,4 +51,4 @@
|
|
|
49
51
|
"last 1 safari version"
|
|
50
52
|
]
|
|
51
53
|
}
|
|
52
|
-
}
|
|
54
|
+
}
|
package/vite.config.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import path from 'path';
|
|
1
2
|
import { defineConfig } from 'vite'
|
|
2
3
|
import react from '@vitejs/plugin-react'
|
|
3
|
-
import path from 'path'
|
|
4
4
|
|
|
5
5
|
// https://vitejs.dev/config/
|
|
6
6
|
export default defineConfig({
|
|
7
7
|
plugins: [react()],
|
|
8
8
|
server: {
|
|
9
|
-
port: 5174,
|
|
9
|
+
port: 5174, // Unique port for new_project
|
|
10
10
|
strictPort: true,
|
|
11
11
|
host: true,
|
|
12
12
|
cors: true,
|
|
@@ -16,9 +16,17 @@ export default defineConfig({
|
|
|
16
16
|
outDir: 'build',
|
|
17
17
|
emptyOutDir: true,
|
|
18
18
|
rollupOptions: {
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
external: ["react", "react-dom"],
|
|
20
|
+
/* output: {
|
|
21
|
+
name: "pankosmia-rcl",
|
|
22
|
+
globals: { 'react': 'React', 'react-dom': 'ReactDom' }
|
|
23
|
+
}*/
|
|
21
24
|
},
|
|
25
|
+
lib: {
|
|
26
|
+
entry: path.resolve(__dirname, './src/rcl/index.js'),
|
|
27
|
+
name: 'pankosmia-rcl',
|
|
28
|
+
fileName: (format) => `pankosmia-rcl.${format}.js`
|
|
29
|
+
}
|
|
22
30
|
},
|
|
23
31
|
base: '/clients/core-client-rcl/'
|
|
24
|
-
})
|
|
32
|
+
})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow:hidden}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}
|