Revert "chore: stub out new component lib (#2467)" (#2472)

This reverts commit 496a963dcf60fc7c645a5b0d56faf38c413a328f.
This commit is contained in:
Zach Pomerantz 2021-09-29 16:55:31 -07:00 committed by GitHub
parent 496a963dcf
commit aa1db580ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 351 additions and 1609 deletions

3
.gitignore vendored

@ -16,9 +16,6 @@
# production # production
/build /build
# bundle
/dist
# misc # misc
.DS_Store .DS_Store
.env.local .env.local

@ -1,7 +0,0 @@
{
"staticPath": "public",
"watchDirs": ["src"],
"webpack": {
"configPath": "react-scripts/config/webpack.config"
}
}

@ -1,14 +1,7 @@
{ {
"name": "@uniswap/interface", "name": "@uniswap/interface",
"description": "Uniswap Interface", "description": "Uniswap Interface",
"homepage": "https://github.com/Uniswap/interface", "homepage": ".",
"main": "dist/interface.js",
"module": "dist/interface.esm.js",
"types": "dist/index.d.ts",
"files": [
"lib",
"dist"
],
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@davatar/react": "1.6.2", "@davatar/react": "1.6.2",
@ -78,7 +71,6 @@
"array.prototype.flatmap": "^1.2.4", "array.prototype.flatmap": "^1.2.4",
"cids": "^1.0.0", "cids": "^1.0.0",
"copy-to-clipboard": "^3.2.0", "copy-to-clipboard": "^3.2.0",
"cross-env": "^7.0.3",
"cypress": "^7.7.0", "cypress": "^7.7.0",
"d3": "^7.0.0", "d3": "^7.0.0",
"eslint": "^7.11.0", "eslint": "^7.11.0",
@ -93,7 +85,6 @@
"inter-ui": "^3.13.1", "inter-ui": "^3.13.1",
"jest-styled-components": "^7.0.5", "jest-styled-components": "^7.0.5",
"luxon": "^1.25.0", "luxon": "^1.25.0",
"microbundle": "^0.13.3",
"ms.macro": "^2.0.0", "ms.macro": "^2.0.0",
"multicodec": "^3.0.1", "multicodec": "^3.0.1",
"multihashes": "^4.0.2", "multihashes": "^4.0.2",
@ -104,7 +95,6 @@
"qs": "^6.9.4", "qs": "^6.9.4",
"react": "^17.0.1", "react": "^17.0.1",
"react-confetti": "^6.0.0", "react-confetti": "^6.0.0",
"react-cosmos": "^5.6.3",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
"react-feather": "^2.0.8", "react-feather": "^2.0.8",
"react-ga": "^2.5.7", "react-ga": "^2.5.7",
@ -148,9 +138,7 @@
"start": "react-scripts start", "start": "react-scripts start",
"build": "react-scripts build", "build": "react-scripts build",
"test": "react-scripts test --env=./custom-test-env.js", "test": "react-scripts test --env=./custom-test-env.js",
"test:e2e": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run --record'", "test:e2e": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run --record'"
"bundle": "microbundle --tsconfig tsconfig.lib.json src/lib/index.tsx --format esm,cjs",
"cosmos": "open http://localhost:5000 && cross-env FAST_REFRESH=false cosmos"
}, },
"eslintConfig": { "eslintConfig": {
"extends": "react-app", "extends": "react-app",

@ -1,7 +0,0 @@
import './'
describe('lib', () => {
it('exists', () => {
expect(true).toBeTruthy()
})
})

@ -1 +0,0 @@
export {}

@ -27,5 +27,5 @@
"baseUrl": "src" "baseUrl": "src"
}, },
"exclude": ["node_modules", "cypress"], "exclude": ["node_modules", "cypress"],
"include": ["src/**/*"] "include": ["./src/**/*.ts", "./src/**/*.tsx", "src/components/Confetti/index.js"]
} }

@ -1,9 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"baseUrl": "src/lib"
},
"exclude": ["node_modules", "src/lib/**/*.test.*"],
"include": ["src/lib/**/*"]
}

1915
yarn.lock

File diff suppressed because it is too large Load Diff