Skip to content

Commit

Permalink
Merge pull request #47 from aaron5670/optimizely-features-search
Browse files Browse the repository at this point in the history
Functionality: Search for Optimizely Feature Toggles
  • Loading branch information
aaron5670 authored Jun 28, 2023
2 parents 3c2769c + 88788bf commit bff6f38
Show file tree
Hide file tree
Showing 24 changed files with 1,654 additions and 334 deletions.
29 changes: 29 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:perfectionist/recommended-line-length"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"perfectionist"
],
"rules": {
"perfectionist/sort-objects": [
"error",
{
"type": "natural",
"order": "asc"
}
]
}
}
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
"name": "toggle-experiment",
"displayName": "Toggle Experiment",
"description": "A browser extension to inject the LocalStorage of a website for Optimizely experiments.",
"version": "0.10.1",
"version": "0.11.0",
"author": "Aaron van den Berg",
"homepage": "https://aaronvandenberg.nl/",
"scripts": {
"dev": "plasmo dev",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/**/* --fix",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.13",
"@mantine/hooks": "^6.0.13",
"@mantine/notifications": "^6.0.13",
"@mantine/core": "^6.0.15",
"@mantine/hooks": "^6.0.15",
"@mantine/notifications": "^6.0.15",
"@plasmohq/storage": "^1.6.1",
"@tabler/icons-react": "^2.22.0",
"immer": "^9.0.21",
Expand All @@ -30,6 +31,11 @@
"@types/node": "18.16.18",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-plugin-perfectionist": "^1.4.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "2.8.8",
"typescript": "4.9.5"
},
Expand Down
Loading

0 comments on commit bff6f38

Please sign in to comment.