forked from JetBrains/intellij-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IDEA-273510 Building of distribution — provide report like webpack/ro…
…llup do GitOrigin-RevId: 0b838c5995df58136f4af8771144aac744902555
- Loading branch information
1 parent
b383c8d
commit 3de0fd9
Showing
18 changed files
with
1,302 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
dist | ||
plugin-graph/node_modules | ||
node_modules | ||
plugin-graph/plugin-graph.local.json | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Dist Content</title> | ||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1"> | ||
</head> | ||
|
||
<body> | ||
<input id="fileInput" | ||
type="file" | ||
class="p-1 fixed right-0 text-sm z-50" | ||
accept="application/json"/> | ||
<div id="app" class="w-screen h-screen"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"version": "0.0.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build --emptyOutDir", | ||
"deploy": "pnpm run build && space hosting publish --public ij dist-content ./dist", | ||
"serve": "vite preview" | ||
}, | ||
"dependencies": { | ||
"echarts": "^5.1.2", | ||
"pretty-bytes": "^5.6.0" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.2.6", | ||
"postcss": "^8.3.5", | ||
"tailwindcss": "^2.2.4", | ||
"vite": "^2.4.2" | ||
} | ||
} |
Oops, something went wrong.