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

feat(rush clean): add new rush clean command/script #1824

Merged
merged 1 commit into from
Oct 21, 2019

Conversation

spencercorwin
Copy link
Collaborator

@spencercorwin spencercorwin commented Oct 18, 2019

Description of the Change

Adds a rush command to easily delete all the *.build.log files. The -d or --debug flag will log exactly what it's deleting. The -f or --full flag will also delete all the lib directories, and package-deps.json files.

Test Plan

Run rush clean -d to see it delete all the *.build.log files. The -d or --debug flag will log exactly what it's deleting.

Run rush clean -d -f to see it delete all the lib directories and package-deps.json files as well.

Alternate Designs

None.

Benefits

Ability to clean out files with a single command.

Possible Drawbacks

None.

Applicable Issues

#1820

@spencercorwin spencercorwin force-pushed the rush-clean branch 2 times, most recently from bbea3c0 to 1b5e334 Compare October 18, 2019 21:13
Copy link
Contributor

@danwbyrne danwbyrne left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see log changes

@@ -171,7 +179,7 @@
"longName": "--watch",
"shortName": "-w",
"description": "flags this build command as watch",
"associatedCommands": ["build-workers", "build-overlay", "build-preview", "build-test-runner"]
"associatedCommands": ["build-workers", "build-overlay", "build-preview", "build-test-runner", "build-tools"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

delete 'build-tools'

"parameterKind": "flag",
"longName": "--debug",
"shortName": "-d",
"description": "enables logging for rush clean",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might use this flag for other commands so just say enables debug logging for associated command. Can add this as a flag for start-server as well since react-static has a --debug flag.


const APP_ROOT_DIR = path.resolve(__dirname, '..', '..', '..');
const PACKAGES_DIR = path.resolve(APP_ROOT_DIR, 'packages');

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

const getLogger = (debug: boolean = false) => {
    return debug ? (input:string) => console.log(string) : (_input: string) => {
        // do nothing
    }
}
const debug = getLogger(argv.debug);

Comment on lines 21 to 24
if (argv.debug) {
console.log('Packages being scanned:');
console.log(packagesToScan);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

debug('Packages being scanned:');
debug(packagesToScan);

Comment on lines 29 to 31
if (argv.debug) {
console.log(`Removing package-deps: ${path.resolve(dir, 'package-deps.json')}`);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

debug(`Removing package-deps: ${path.resolve(dir, 'package-deps.json')}`)

Comment on lines 33 to 35
if (argv.debug) {
console.log(`Removing /lib: ${path.resolve(dir, 'lib')}`);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^

Comment on lines 41 to 43
if (argv.debug) {
console.log(`Removing log file: ${path.resolve(dir, file)}`);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^

@danwbyrne danwbyrne merged commit 0e344e1 into neo-one-suite:rush Oct 21, 2019
@spencercorwin spencercorwin deleted the rush-clean branch October 23, 2019 00:39
danwbyrne added a commit to danwbyrne/neo-one that referenced this pull request Nov 6, 2019
…e#1803)

fix(website): WIP fixing website with Rush (neo-one-suite#1814)

fixup pouchdb local file loading (neo-one-suite#1823)

fix(website): WIP to show how to fix website FS (neo-one-suite#1822)

fix(website): fixup neo-one source file loading into pouchDB (neo-one-suite#1825)

feat(rush clean): add new rush clean command/script (neo-one-suite#1824)

feat(rush): prepare rush for npm publishing (neo-one-suite#1834)

fix(script): fix spencers scripts (neo-one-suite#1827)

feat(CI): fixup e2e tests (neo-one-suite#1833)

fix(rush): move smart-contract-lib tests to neo-one-smart-contract-test (neo-one-suite#1850)

feat(rush): Add pack/release commands (neo-one-suite#1854)
danwbyrne added a commit to danwbyrne/neo-one that referenced this pull request Nov 6, 2019
…e#1803)

fix(website): WIP fixing website with Rush (neo-one-suite#1814)

fixup pouchdb local file loading (neo-one-suite#1823)

fix(website): WIP to show how to fix website FS (neo-one-suite#1822)

fix(website): fixup neo-one source file loading into pouchDB (neo-one-suite#1825)

feat(rush clean): add new rush clean command/script (neo-one-suite#1824)

feat(rush): prepare rush for npm publishing (neo-one-suite#1834)

fix(script): fix spencers scripts (neo-one-suite#1827)

feat(CI): fixup e2e tests (neo-one-suite#1833)

fix(rush): move smart-contract-lib tests to neo-one-smart-contract-test (neo-one-suite#1850)

feat(rush): Add pack/release commands (neo-one-suite#1854)
danwbyrne added a commit that referenced this pull request Nov 20, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 20, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 20, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Nov 22, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 2, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 2, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 2, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 3, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 3, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 3, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 3, 2019
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)
danwbyrne added a commit that referenced this pull request Dec 5, 2019
* feat(rush): Migrate to Rush (#1803) (#1871)

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)

* chore(deps): upgrade dependencies (#1896)

* fix(deps): update dependency @types/react to v16.9.14 (#1848)

* chore(deps): upgrade dependencies (#1909)

* refactor(node3.0): update opcodes & syscalls to match neo3.0 (#1790)

* ci(temp remove): turn off CI while 3.x is in a broken state (#1802)

* feat(runtime.getnotifications): add notification tracking during vm execution (#1804)

Add notification tracking during vm execution for the System.Runtime.GetNotifications syscall

#1786

* fix(compiler): update syscalls and opcodes (#1867)

* feat(vm): add null stack item, PUSHNULL, ISNULL, and tests (#1873)

* feat(vm): add system.blockchain.gettransactionfromblock syscall to vm (#1872)

* feat(contractmanifest): add contract manifest models (#1892)
spencercorwin pushed a commit to spencercorwin/neo-one that referenced this pull request Jan 31, 2020
* feat(rush): Migrate to Rush (neo-one-suite#1803) (neo-one-suite#1871)

fix(website): WIP fixing website with Rush (neo-one-suite#1814)

fixup pouchdb local file loading (neo-one-suite#1823)

fix(website): WIP to show how to fix website FS (neo-one-suite#1822)

fix(website): fixup neo-one source file loading into pouchDB (neo-one-suite#1825)

feat(rush clean): add new rush clean command/script (neo-one-suite#1824)

feat(rush): prepare rush for npm publishing (neo-one-suite#1834)

fix(script): fix spencers scripts (neo-one-suite#1827)

feat(CI): fixup e2e tests (neo-one-suite#1833)

fix(rush): move smart-contract-lib tests to neo-one-smart-contract-test (neo-one-suite#1850)

feat(rush): Add pack/release commands (neo-one-suite#1854)

feat(rush): add initial changelog for migration

fix(rush): add git hooks back, add tsc command (neo-one-suite#1845)

fix(rush): fixup e2e test snapshot

pin typescript 3.6.3 temporarily

feat(rush): switch to pnpm (neo-one-suite#1864)

fix(rush): refine docker image copies (neo-one-suite#1865)

fix(rush): revert back to yarn for website (neo-one-suite#1868)

fix(rush): add/cleanup website prod cmds and compile scripts (neo-one-suite#1844)

fix(rush): add appropriate path-mapping, add sourcemaps for dev (neo-one-suite#1869)

* chore(deps): upgrade dependencies (neo-one-suite#1896)

* fix(deps): update dependency @types/react to v16.9.14 (neo-one-suite#1848)

* chore(deps): upgrade dependencies (neo-one-suite#1909)

* refactor(node3.0): update opcodes & syscalls to match neo3.0 (neo-one-suite#1790)

* ci(temp remove): turn off CI while 3.x is in a broken state (neo-one-suite#1802)

* feat(runtime.getnotifications): add notification tracking during vm execution (neo-one-suite#1804)

Add notification tracking during vm execution for the System.Runtime.GetNotifications syscall

neo-one-suite#1786

* fix(compiler): update syscalls and opcodes (neo-one-suite#1867)

* feat(vm): add null stack item, PUSHNULL, ISNULL, and tests (neo-one-suite#1873)

* feat(vm): add system.blockchain.gettransactionfromblock syscall to vm (neo-one-suite#1872)

* feat(contractmanifest): add contract manifest models (neo-one-suite#1892)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants