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

fix: tasks and tsconfig edits #249

Merged
merged 2 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
},
"scripts": {
"typecheck": "lerna run typecheck",
"bootstrap": "yarn lerna exec --parallel 'yarn'",
"build:libs": "yarn build:ui && yarn build:keychain && yarn build:connect",
"build:ui": "lerna run build --scope @blockstack/ui",
"build:keychain": "lerna run build --scope @blockstack/keychain",
Expand Down
6 changes: 3 additions & 3 deletions packages/app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1796,9 +1796,9 @@
integrity sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==

"@types/node@^12.7.12":
version "12.12.28"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.28.tgz#3a2b5f8d21f96ace690a8832ae9779114612575f"
integrity sha512-g73GJYJDXgf0jqg+P9S8h2acWbDXNkoCX8DLtJVu7Fkn788pzQ/oJsrdJz/2JejRf/SjfZaAhsw+3nd1D5EWGg==
version "12.12.29"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.29.tgz#46275f028b4e463b9ac5fefc1d08bc66cc193f25"
integrity sha512-yo8Qz0ygADGFptISDj3pOC9wXfln/5pQaN/ysDIzOaAWXt73cNHmtEC8zSO2Y+kse/txmwIAJzkYZ5fooaS5DQ==

"@types/node@^13.7.2":
version "13.7.2"
Expand Down
7 changes: 4 additions & 3 deletions packages/connect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@
"access": "public"
},
"scripts": {
"build": "tsdx build --format cjs,esm,umd && yarn build:web",
"build:web": "NODE_ENV=production webpack --mode=production",
"build:web:analyze": "NODE_ENV=production ANALYZE=true webpack --mode=production",
"build": "yarn build:modules && yarn build:standalone",
"build:modules": "tsdx build --format cjs,esm,umd",
"build:standalone": "NODE_ENV=production webpack --mode=production",
"build:standalone:analyze": "NODE_ENV=production ANALYZE=true webpack --mode=production",
"dev": "cd test-app && yarn start",
"lint": "eslint --ext .ts,.tsx ./src/ -f unix",
"lint:fix": "eslint --ext .ts,.tsx ./src/ -f unix --fix",
Expand Down
4 changes: 2 additions & 2 deletions packages/connect/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./",
"rootDir": "../",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
Expand All @@ -27,6 +27,6 @@
},
"jsx": "react",
"esModuleInterop": true,
"skipLibCheck": true,
"skipLibCheck": true
}
}
2 changes: 1 addition & 1 deletion packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"suppressImplicitAnyIndexErrors": false,
"outDir": "./dist",
"baseUrl": "./",
"rootDir": "./src",
"rootDir": "../",
"skipLibCheck": true,
"esModuleInterop": true,
"strictNullChecks": true
Expand Down