mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 01:24:41 +08:00
Remove dependency and minot improvement
This commit is contained in:
6
dist/ueblueprint.js
vendored
6
dist/ueblueprint.js
vendored
@@ -11183,15 +11183,15 @@ class BlueprintTemplate extends ITemplate {
|
||||
</div>
|
||||
<dialog class="ueb-info-dialog" @click="${e => e.target.closest(".ueb-info-dialog").close()}">
|
||||
<h2>UEBlueprint</h2>
|
||||
<p>A stand alone editor implementation of the UE's Blueprint visual language.</p>
|
||||
<p>A stand alone implementation of the UE's Blueprint visual language editor.</p>
|
||||
<p>
|
||||
Version: ${Configuration.VERSION}<br />
|
||||
Author: barsdeveloper<br />
|
||||
License: MIT<br />
|
||||
|
||||
<a target="_blank" href="https://github.com/barsdeveloper/ueblueprint">
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="#e3b341" style="vertical-align: bottom">
|
||||
<path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z"></path>
|
||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="#e3b341" style="vertical-align: bottom">
|
||||
<path d="M 12 0.587 L 16 8 L 24 9 L 18 15 L 20 24 L 12 19 L 4 24 L 6 15 L 0 9 L 8 8 Z M 0 0"></path>
|
||||
</svg>
|
||||
https://github.com/barsdeveloper/ueblueprint
|
||||
</a>
|
||||
|
||||
2
dist/ueblueprint.min.js
vendored
2
dist/ueblueprint.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -169,8 +169,8 @@ export default class BlueprintTemplate extends ITemplate {
|
||||
License: MIT<br />
|
||||
|
||||
<a target="_blank" href="https://github.com/barsdeveloper/ueblueprint">
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="#e3b341" style="vertical-align: bottom">
|
||||
<path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z"></path>
|
||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="#e3b341" style="vertical-align: bottom">
|
||||
<path d="M 12 0.587 L 16 8 L 24 9 L 18 15 L 20 24 L 12 19 L 4 24 L 6 15 L 0 9 L 8 8 Z M 0 0"></path>
|
||||
</svg>
|
||||
https://github.com/barsdeveloper/ueblueprint
|
||||
</a>
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
"homepage": "https://github.com/barsdeveloper/ueblueprint#readme",
|
||||
"devDependencies": {
|
||||
"@playwright/test": "1.49",
|
||||
"@rollup/plugin-commonjs": "^28",
|
||||
"@rollup/plugin-node-resolve": "^16",
|
||||
"@rollup/plugin-terser": "^0",
|
||||
"concurrently": "^9",
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import commonjs from "@rollup/plugin-commonjs"
|
||||
import copy from "rollup-plugin-copy"
|
||||
import minifyHTML from "rollup-plugin-minify-html-literals"
|
||||
import resolve from "@rollup/plugin-node-resolve"
|
||||
@@ -13,7 +12,6 @@ export default [
|
||||
},
|
||||
plugins: [
|
||||
resolve({ browser: true }),
|
||||
commonjs(),
|
||||
copy({
|
||||
targets: [{
|
||||
src: ["assets/fonts/*"],
|
||||
@@ -30,7 +28,6 @@ export default [
|
||||
},
|
||||
plugins: [
|
||||
resolve({ browser: true }),
|
||||
commonjs(),
|
||||
minifyHTML({
|
||||
minifyCSS: true,
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user