-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(website): WIP fixing website with Rush (#1814) fixup pouchdb local file loading (#1823) fix(website): WIP to show how to fix website FS (#1822) fix(website): fixup neo-one source file loading into pouchDB (#1825) feat(rush clean): add new rush clean command/script (#1824) feat(rush): prepare rush for npm publishing (#1834) fix(script): fix spencers scripts (#1827) feat(CI): fixup e2e tests (#1833) fix(rush): move smart-contract-lib tests to neo-one-smart-contract-test (#1850) feat(rush): Add pack/release commands (#1854) feat(rush): add initial changelog for migration fix(rush): add git hooks back, add tsc command (#1845) fix(rush): fixup e2e test snapshot pin typescript 3.6.3 temporarily feat(rush): switch to pnpm (#1864) fix(rush): refine docker image copies (#1865) fix(rush): revert back to yarn for website (#1868) fix(rush): add/cleanup website prod cmds and compile scripts (#1844) fix(rush): add appropriate path-mapping, add sourcemaps for dev (#1869)
- Loading branch information
Showing
495 changed files
with
11,794 additions
and
7,263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
**/node_modules** | ||
**/lib* | ||
**/package-deps.json | ||
**/*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const path = require('path'); | ||
|
||
const basePath = path.resolve(__dirname, '.git'); | ||
|
||
module.exports = { | ||
hooks: { | ||
'pre-commit': `rush check && rush lint:staged -p 16 && rush build && GIT_DIR=${basePath} rush change -v`, | ||
'post-merge': 'rush install', | ||
'post-rewrite': 'rush install', | ||
'post-checkout': 'rush install', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
'**/src/**/*.ts?(x)': (filenames) => | ||
filenames.reduce((acc, filename) => { | ||
return acc.concat([ | ||
`${path.resolve( | ||
__dirname, | ||
'common', | ||
'temp', | ||
'node_modules', | ||
'.bin', | ||
'prettier', | ||
)} --write ${filename}`, | ||
`git add ${path.resolve(process.cwd(), filename)}`, | ||
`node ./node_modules/@neo-one/build-tools/bin/neo-one-lint.js --staged --pattern \"${filename}\"`, | ||
]); | ||
}, []), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
{ | ||
"arrowParens": "always", | ||
"printWidth": 120, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.