Skip to content

Commit

Permalink
fix(extension): fix extension setup (#1012)
Browse files Browse the repository at this point in the history
* fix(extension): use rm instead of trash

* fix(extension): use the appropriate peer-deps for web-ext and eslint-plugin-mozilla

* refactor(extension): moved .gitignore rules into Extension

* fix(extension): fix prettier setup
  • Loading branch information
vringar committed Oct 14, 2022
1 parent d050824 commit abf10d7
Show file tree
Hide file tree
Showing 21 changed files with 1,654 additions and 2,026 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,4 @@ docs/apidoc/
# npm packages
node_modules

# built extension artifacts
Extension/dist
Extension/openwpm.xpi
Extension/bundled/content.js
Extension/bundled/feature.js

datadir
8 changes: 7 additions & 1 deletion Extension/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ coverage
.nyc_output
*.log

yarn.lock
yarn.lock

# built extension artifacts
dist
openwpm.xpi
bundled/content.js
bundled/feature.js
19 changes: 15 additions & 4 deletions Extension/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
node_modules
build
test
src/**.js
.idea/*

coverage
.nyc_output
*.log

yarn.lock

# built extension artifacts
dist
openwpm.xpi
bundled/content.js
bundled/feature.js
bundled/privileged/sockets/bufferpack.js
dist
build
node_modules
1 change: 1 addition & 0 deletions Extension/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit abf10d7

Please sign in to comment.