Merge branch 'nxwebpack' of https://github.com/ethereum/remix-project into nxwebpack
commit
c1b2a81e44
@ -1,15 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../dist/out-tsc", |
|
||||||
"module": "commonjs", |
|
||||||
"types": ["jest", "node"] |
|
||||||
}, |
|
||||||
"include": [ |
|
||||||
"**/*.spec.ts", |
|
||||||
"**/*.spec.tsx", |
|
||||||
"**/*.spec.js", |
|
||||||
"**/*.spec.jsx", |
|
||||||
"**/*.d.ts" |
|
||||||
] |
|
||||||
} |
|
@ -1,23 +0,0 @@ |
|||||||
#!/usr/bin/env bash |
|
||||||
|
|
||||||
set -e |
|
||||||
|
|
||||||
BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} |
|
||||||
echo "$BUILD_ID" |
|
||||||
TEST_EXITCODE=0 |
|
||||||
|
|
||||||
npx nx graph --file=projects.json |
|
||||||
KEYS=$(jq -r '.projects | keys' workspace.json | tr -d '[],"') |
|
||||||
|
|
||||||
(for row in $KEYS; do |
|
||||||
if [ "$row" != "debugger" ] |
|
||||||
then |
|
||||||
echo ${row} |
|
||||||
fi |
|
||||||
done) | circleci tests split | { while read i;do yarn run lint $i; done } |
|
||||||
|
|
||||||
echo "$TEST_EXITCODE" |
|
||||||
if [ "$TEST_EXITCODE" -eq 1 ] |
|
||||||
then |
|
||||||
exit 1 |
|
||||||
fi |
|
@ -1,15 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../dist/out-tsc", |
|
||||||
"module": "commonjs", |
|
||||||
"types": ["jest", "node"] |
|
||||||
}, |
|
||||||
"include": [ |
|
||||||
"**/*.spec.ts", |
|
||||||
"**/*.spec.tsx", |
|
||||||
"**/*.spec.js", |
|
||||||
"**/*.spec.jsx", |
|
||||||
"**/*.d.ts" |
|
||||||
] |
|
||||||
} |
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"presets": ["@nrwl/react/babel"], |
|
||||||
"plugins": [] |
|
||||||
} |
|
@ -1,19 +0,0 @@ |
|||||||
{ |
|
||||||
"env": { |
|
||||||
"browser": true, |
|
||||||
"es6": true |
|
||||||
}, |
|
||||||
"extends": "../../../.eslintrc.json", |
|
||||||
"globals": { |
|
||||||
"Atomics": "readonly", |
|
||||||
"SharedArrayBuffer": "readonly" |
|
||||||
}, |
|
||||||
"parserOptions": { |
|
||||||
"ecmaVersion": 11, |
|
||||||
"sourceType": "module" |
|
||||||
}, |
|
||||||
"rules": { |
|
||||||
"no-unused-vars": "off", |
|
||||||
"@typescript-eslint/no-unused-vars": "error" |
|
||||||
} |
|
||||||
} |
|
@ -1,16 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "../../../tsconfig.base.json", |
|
||||||
"compilerOptions": { |
|
||||||
"jsx": "react", |
|
||||||
"allowJs": true, |
|
||||||
"esModuleInterop": true, |
|
||||||
"allowSyntheticDefaultImports": true |
|
||||||
}, |
|
||||||
"files": [], |
|
||||||
"include": [], |
|
||||||
"references": [ |
|
||||||
{ |
|
||||||
"path": "./tsconfig.lib.json" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../../dist/out-tsc", |
|
||||||
"types": ["node"] |
|
||||||
}, |
|
||||||
"files": [ |
|
||||||
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", |
|
||||||
"../../../node_modules/@nrwl/react/typings/image.d.ts" |
|
||||||
], |
|
||||||
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"], |
|
||||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] |
|
||||||
} |
|
@ -1,14 +0,0 @@ |
|||||||
/* eslint-disable @typescript-eslint/no-unused-vars */ |
|
||||||
import React from 'react' |
|
||||||
|
|
||||||
function CustomButtonGroupAsArrows ({ next, previous }) { |
|
||||||
return ( |
|
||||||
<div style={{ textAlign: "center" }}> |
|
||||||
<h4>These buttons can be positioned anywhere you want on the screen</h4> |
|
||||||
<button onClick={previous}>Prev</button> |
|
||||||
<button onClick={next}>Next</button> |
|
||||||
</div> |
|
||||||
) |
|
||||||
} |
|
||||||
|
|
||||||
export default CustomButtonGroupAsArrows |
|
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"presets": ["@nrwl/react/babel"], |
|
||||||
"plugins": [] |
|
||||||
} |
|
@ -1,18 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": ["plugin:@nrwl/nx/react", "../../../.eslintrc.json"], |
|
||||||
"ignorePatterns": ["!**/*"], |
|
||||||
"overrides": [ |
|
||||||
{ |
|
||||||
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"], |
|
||||||
"rules": {} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"files": ["*.ts", "*.tsx"], |
|
||||||
"rules": {} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"files": ["*.js", "*.jsx"], |
|
||||||
"rules": {} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
# remix-ui-locale-module |
|
||||||
|
|
||||||
This library was generated with [Nx](https://nx.dev). |
|
||||||
|
|
||||||
## Running unit tests |
|
||||||
|
|
||||||
Run `nx test remix-ui-locale-module` to execute the unit tests via [Jest](https://jestjs.io). |
|
@ -1,20 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "../../../tsconfig.base.json", |
|
||||||
"compilerOptions": { |
|
||||||
"jsx": "react-jsx", |
|
||||||
"allowJs": true, |
|
||||||
"esModuleInterop": true, |
|
||||||
"allowSyntheticDefaultImports": true, |
|
||||||
"forceConsistentCasingInFileNames": true, |
|
||||||
"strict": true, |
|
||||||
"noImplicitReturns": true, |
|
||||||
"noFallthroughCasesInSwitch": true |
|
||||||
}, |
|
||||||
"files": [], |
|
||||||
"include": [], |
|
||||||
"references": [ |
|
||||||
{ |
|
||||||
"path": "./tsconfig.lib.json" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../../dist/out-tsc", |
|
||||||
"types": ["node"] |
|
||||||
}, |
|
||||||
"files": [ |
|
||||||
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", |
|
||||||
"../../../node_modules/@nrwl/react/typings/image.d.ts" |
|
||||||
], |
|
||||||
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"], |
|
||||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"presets": ["@nrwl/react/babel"], |
|
||||||
"plugins": [] |
|
||||||
} |
|
@ -1,19 +0,0 @@ |
|||||||
{ |
|
||||||
"env": { |
|
||||||
"browser": true, |
|
||||||
"es6": true |
|
||||||
}, |
|
||||||
"extends": "../../../.eslintrc.json", |
|
||||||
"globals": { |
|
||||||
"Atomics": "readonly", |
|
||||||
"SharedArrayBuffer": "readonly" |
|
||||||
}, |
|
||||||
"parserOptions": { |
|
||||||
"ecmaVersion": 11, |
|
||||||
"sourceType": "module" |
|
||||||
}, |
|
||||||
"rules": { |
|
||||||
"no-unused-vars": "off", |
|
||||||
"@typescript-eslint/no-unused-vars": "error" |
|
||||||
} |
|
||||||
} |
|
@ -1,7 +0,0 @@ |
|||||||
# remix-ui-static-analyser |
|
||||||
|
|
||||||
This library was generated with [Nx](https://nx.dev). |
|
||||||
|
|
||||||
## Running unit tests |
|
||||||
|
|
||||||
Run `nx test remix-ui-static-analyser` to execute the unit tests via [Jest](https://jestjs.io). |
|
@ -1,16 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "../../../tsconfig.base.json", |
|
||||||
"compilerOptions": { |
|
||||||
"jsx": "react", |
|
||||||
"allowJs": true, |
|
||||||
"esModuleInterop": true, |
|
||||||
"allowSyntheticDefaultImports": true |
|
||||||
}, |
|
||||||
"files": [], |
|
||||||
"include": [], |
|
||||||
"references": [ |
|
||||||
{ |
|
||||||
"path": "./tsconfig.lib.json" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../../dist/out-tsc", |
|
||||||
"types": ["node"] |
|
||||||
}, |
|
||||||
"files": [ |
|
||||||
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts", |
|
||||||
"../../../node_modules/@nrwl/react/typings/image.d.ts" |
|
||||||
], |
|
||||||
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"], |
|
||||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
{ |
|
||||||
"presets": ["@nrwl/react/babel"], |
|
||||||
"plugins": [] |
|
||||||
} |
|
@ -1,19 +0,0 @@ |
|||||||
{ |
|
||||||
"env": { |
|
||||||
"browser": true, |
|
||||||
"es6": true |
|
||||||
}, |
|
||||||
"extends": "../../../.eslintrc", |
|
||||||
"globals": { |
|
||||||
"Atomics": "readonly", |
|
||||||
"SharedArrayBuffer": "readonly" |
|
||||||
}, |
|
||||||
"parserOptions": { |
|
||||||
"ecmaVersion": 11, |
|
||||||
"sourceType": "module" |
|
||||||
}, |
|
||||||
"rules": { |
|
||||||
"no-unused-vars": "off", |
|
||||||
"@typescript-eslint/no-unused-vars": "error" |
|
||||||
} |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
# remix-ui-tabs |
|
||||||
|
|
||||||
This library was generated with [Nx](https://nx.dev). |
|
||||||
Its purpose is to integrate tabs for the Remix IDE main view. |
|
@ -1,19 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "../../../tsconfig.base.json", |
|
||||||
"compilerOptions": { |
|
||||||
"jsx": "react", |
|
||||||
"allowJs": true, |
|
||||||
"esModuleInterop": true, |
|
||||||
"allowSyntheticDefaultImports": true |
|
||||||
}, |
|
||||||
"files": [], |
|
||||||
"include": [], |
|
||||||
"references": [ |
|
||||||
{ |
|
||||||
"path": "./tsconfig.lib.json" |
|
||||||
}, |
|
||||||
{ |
|
||||||
"path": "./tsconfig.spec.json" |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,13 +0,0 @@ |
|||||||
{ |
|
||||||
"extends": "./tsconfig.json", |
|
||||||
"compilerOptions": { |
|
||||||
"outDir": "../../dist/out-tsc", |
|
||||||
"types": ["node"] |
|
||||||
}, |
|
||||||
"files": [ |
|
||||||
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts", |
|
||||||
"../../node_modules/@nrwl/react/typings/image.d.ts" |
|
||||||
], |
|
||||||
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"], |
|
||||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] |
|
||||||
} |
|
Loading…
Reference in new issue