Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
refactor: Reorganized project folder structure (#25)
Browse files Browse the repository at this point in the history
* refactor: Moves modules to util

* refactor: Removes legacy module

* refactor: Removes stylesheets
  • Loading branch information
frgfm authored Dec 14, 2023
1 parent 3dceb24 commit fbeffdf
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 141 deletions.
12 changes: 8 additions & 4 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
- svelte/*

"module: quack":
- src/quack.ts
- src/util/quack.ts

"module: telemetry":
- src/analytics.ts
- src/util/analytics.ts

"module: util":
- src/util/*
"module: github":
- src/util/github.ts

"module: session":
- src/util/session.ts

"module: webviews":
- src/webviews/*
Expand All @@ -28,6 +31,7 @@
- tsconfig.json
- rollup.config.js
- webpack.config.js
- .vscode/*

"topic: ci":
- .github/*
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
GuidelineTreeItem,
GuidelineTreeProvider,
} from "./webviews/guidelineView";
import analyticsClient from "./analytics";
import analyticsClient from "./util/analytics";
import {
getCurrentRepoName,
getSelectionText,
Expand All @@ -28,7 +28,7 @@ import {
ComplianceResult,
verifyQuackEndpoint,
authenticate,
} from "./quack";
} from "./util/quack";

function updateContext(context: vscode.ExtensionContext) {
const quackToken = context.workspaceState.get<string>(
Expand Down
File renamed without changes.
14 changes: 0 additions & 14 deletions src/util/getNonce.ts

This file was deleted.

File renamed without changes.
30 changes: 0 additions & 30 deletions styles/reset.css

This file was deleted.

91 changes: 0 additions & 91 deletions styles/vscode.css

This file was deleted.

0 comments on commit fbeffdf

Please sign in to comment.