@orbcharts/plugins-basic 3.0.0-alpha.58 → 3.0.0-alpha.60
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orbcharts/plugins-basic",
|
3
|
-
"version": "3.0.0-alpha.
|
3
|
+
"version": "3.0.0-alpha.60",
|
4
4
|
"description": "plugins for OrbCharts",
|
5
5
|
"author": "Blue Planet Inc.",
|
6
6
|
"license": "Apache-2.0",
|
@@ -32,11 +32,10 @@
|
|
32
32
|
"ts-loader": "^9.4.2",
|
33
33
|
"typescript": "^5.0.4",
|
34
34
|
"vite": "^5.3.5",
|
35
|
-
"vite-plugin-dts": "^3.7.3"
|
36
|
-
"vite-plugin-tsconfig": "^1.0.5"
|
35
|
+
"vite-plugin-dts": "^3.7.3"
|
37
36
|
},
|
38
37
|
"dependencies": {
|
39
|
-
"@orbcharts/core": "^3.0.0-alpha.
|
38
|
+
"@orbcharts/core": "^3.0.0-alpha.55",
|
40
39
|
"d3": "^7.8.5",
|
41
40
|
"rxjs": "^7.8.1"
|
42
41
|
}
|
@@ -1,31 +1,13 @@
|
|
1
|
-
import path from "path"
|
2
1
|
import { defineConfig } from 'vite'
|
3
2
|
import dts from 'vite-plugin-dts'
|
4
|
-
import tsconfig from 'vite-plugin-tsconfig'
|
5
3
|
|
6
4
|
export default defineConfig(({ command, mode }) => {
|
7
|
-
const alias = mode === 'production'
|
8
|
-
? {}
|
9
|
-
: {
|
10
|
-
"@orbcharts/core": path.resolve(__dirname, "./../orbcharts-core")
|
11
|
-
}
|
12
|
-
|
13
|
-
const tsconfigPath = mode === 'production'
|
14
|
-
? 'tsconfig.prod.json'
|
15
|
-
: 'tsconfig.json'
|
16
|
-
|
17
5
|
return {
|
18
6
|
plugins: [
|
19
|
-
tsconfig({
|
20
|
-
filename: tsconfigPath
|
21
|
-
}),
|
22
7
|
dts({
|
23
8
|
insertTypesEntry: true
|
24
9
|
})
|
25
10
|
],
|
26
|
-
resolve: {
|
27
|
-
alias
|
28
|
-
},
|
29
11
|
compilerOptions: {
|
30
12
|
composite: true
|
31
13
|
},
|
File without changes
|
File without changes
|