Skip to content

Commit b10fc60

Browse files
committed
Move extension from packages dir to root
1 parent 6c4165a commit b10fc60

36 files changed

+41
-41
lines changed

.github/workflows/release-ext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/upload-artifact@v4
4242
with:
4343
name: extension-artifacts
44-
path: packages/extension/dist
44+
path: extension/dist
4545

4646
Chrome:
4747
needs: Build

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Here is a list of the commands you can run in the project:
3030

3131
### DEV
3232

33-
#### `pnpm dev:ext` — Run the [extension](https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme) in development mode.
33+
#### `pnpm dev:ext` — Run the [extension](https://github.com/thetarnav/solid-devtools/tree/main/extension#readme) in development mode.
3434

3535
Important if you want to work on the chrome extension. _(The script may fail sometimes after changes, so keep an eye on the console, and restart it if neccessary)_
3636

@@ -74,7 +74,7 @@ This project uses [changesets](https://github.com/changesets/changesets) to mana
7474

7575
![image](https://user-images.githubusercontent.com/24491503/191084587-e53b1743-39ac-40e0-b3a6-cf6bcaca9d5d.png)
7676

77-
4. Click on the "Load unpacked" button and select the `packages/extension/dist/chrome` directory (or `packages/extension/dist/firefox` if you are using firefox)
77+
4. Click on the "Load unpacked" button and select the `extension/dist/chrome` directory (or `extension/dist/firefox` if you are using firefox)
7878

7979
![image](https://user-images.githubusercontent.com/24491503/191084770-84577eb0-1c90-44a7-afa2-a2d03f728a66.png)
8080

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ and interacting with Solid's reactivity graph.
2424
</picture>
2525
</a>
2626

27-
## [The Chrome Extension](./packages/extension#readme)
27+
## [The Chrome Extension](./extension#readme)
2828

2929
🚧 In early development. 🚧
3030

3131
Chrome Developer Tools extension for debugging SolidJS applications. It allows for visualizing and interacting with Solid's reactivity graph, as well as inspecting component state and hierarchy.
3232

3333
Should work in any application using SolidJS, including SolidStart and Astro.
3434

35-
[**>> See the guide on setting started <<**](./packages/extension#getting-started)
35+
[**>> See the guide on setting started <<**](./extension#getting-started)
3636

3737
## All devtools packages
3838

e2e/fixtures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const test = pw.test.extend<{
1818
return
1919
}
2020

21-
const path_to_extension = path.resolve(__dirname, '../packages/extension/dist/chrome')
21+
const path_to_extension = path.resolve(__dirname, '../extension/dist/chrome')
2222
const context = await pw.chromium.launchPersistentContext('', {
2323
args: [
2424
'--headless=new',
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<a href="https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme" target="_blank">
1+
<a href="https://github.com/thetarnav/solid-devtools/tree/main/extension#readme" target="_blank">
22
<p>
33
<img width="100%" src="https://assets.solidjs.com/banner?type=Devtools&background=tiles&project=Chrome%20Extension" alt="Solid Devtools Extension">
44
</p>
File renamed without changes.

0 commit comments

Comments
 (0)