Skip to content

Commit

Permalink
refactor!: remove deprecated code (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz authored Apr 22, 2023
1 parent c10b49e commit 41cf39f
Show file tree
Hide file tree
Showing 56 changed files with 1,015 additions and 477 deletions.
5 changes: 5 additions & 0 deletions .changeset/modern-hats-fail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@capacitor-firebase/authentication': major
---

refactor!: remove deprecated params
25 changes: 25 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Based on https://github.com/ionic-team/prettier-config/blob/v1.0.1/index.js
module.exports = {
arrowParens: 'avoid',
bracketSpacing: true,
jsxBracketSameLine: false,
jsxSingleQuote: false,
quoteProps: 'consistent',
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
pluginSearchDirs: ['./node_modules'],
plugins: [require('prettier-plugin-java')],
overrides: [
{
files: ['*.java'],
options: {
printWidth: 140,
tabWidth: 4,
useTabs: false,
trailingComma: 'none',
},
},
],
};
120 changes: 0 additions & 120 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"affected:fmt": "turbo run fmt --since=origin/main",
"affected:docgen": "turbo run docgen --since=origin/main",
"affected:build": "turbo run build --since=origin/main",
"ios:pod:install": "turbo run ios:pod:install --concurrency=1 --no-cache",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/analytics/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const config = require('../../.prettierrc.js');
module.exports = config;
Loading

0 comments on commit 41cf39f

Please sign in to comment.