Skip to content

Commit

Permalink
feat(@lukeshay/next-ga): created functions and component for Google A…
Browse files Browse the repository at this point in the history
…nalytics
  • Loading branch information
lukeshay committed Jul 27, 2021
1 parent 4397ad4 commit b8e028b
Show file tree
Hide file tree
Showing 24 changed files with 39,114 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

.DS_Store
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
.git/
.yarn/
node_modules/
13 changes: 13 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
trailingComma: 'all',
tabWidth: 2,
semi: true,
singleQuote: true,
jsxSingleQuote: false,
printWidth: 100,
bracketSpacing: true,
useTabs: false,
quoteProps: 'as-needed',
jsxBracketSameLine: false,
arrowParens: 'always',
};
16 changes: 16 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"npmClient": "npm",
"useWorkspaces": true,
"packages": ["packages/*"],
"command": {
"version": {
"exact": true
},
"publish": {
"npmClient": "npm",
"allowBranch": ["main", "canary"],
"registry": "https://registry.npmjs.org/"
}
},
"version": "0.0.0"
}
Loading

0 comments on commit b8e028b

Please sign in to comment.