Skip to content

Commit

Permalink
refactor: split package component into multiple class (#247)
Browse files Browse the repository at this point in the history
* refactor: split package component into multiple class

* fix: build

* fix: wiki main.css path
  • Loading branch information
fraxken authored Nov 24, 2023
1 parent 077cbb2 commit a548e17
Show file tree
Hide file tree
Showing 18 changed files with 1,112 additions and 811 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"eslint": "eslint bin src test",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run build && pkg-ok",
"prepublishOnly": "rimraf ./dist && npm run build && pkg-ok",
"build": "node ./esbuild.config.js",
"test": "npm run test-only && npm run eslint",
"test-only": "node --loader=esmock --no-warnings --test test/",
Expand Down Expand Up @@ -72,6 +72,7 @@
"http-server": "^14.1.1",
"pkg-ok": "^3.0.0",
"pretty-bytes": "^6.1.1",
"rimraf": "^5.0.5",
"strip-ansi": "^7.1.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion public/js/components/navigation.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Import Internal Dependencies
import { PackageInfo } from "./package.info.js";
import { PackageInfo } from "./package/package.js";

export class ViewNavigation {
static DefaultActiveMenu = "network--view";
Expand Down
Loading

0 comments on commit a548e17

Please sign in to comment.