Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding abi to fetch user content from the lens protocol [HDASH-2 HDASH-1] #38

Open
wants to merge 12 commits into
base: truemagic
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
👎🏻👺 -> SSDROP-1 Attempting to fix webpack config
  • Loading branch information
Gizmotronn committed May 24, 2022
commit de2beb1a6acf7099d20ed71361cb20aebf22be53
14 changes: 4 additions & 10 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.7",
"hardhat": "^2.9.6",
Expand All @@ -42,8 +40,10 @@
"truncate-middle": "^1.0.6",
"typescript": "^4.6.4",
"uuid": "^8.3.2",
"wagmi": "^0.4.1",
"wagmi": "^0.4.2",
"web-vitals": "^0.2.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"yarn": "^1.22.10"
},
"scripts": {
Expand All @@ -52,12 +52,6 @@
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
Expand All @@ -71,6 +65,6 @@
]
},
"devDependencies": {
"framer-motion": "^6.3.3"
"framer-motion": "^4.1.17"
}
}
1 change: 1 addition & 0 deletions client/src/react-app-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="react-scripts" />
26 changes: 26 additions & 0 deletions client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}
9 changes: 9 additions & 0 deletions client/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};
Loading