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

Runtime and Compiler v2 #11

Merged
merged 263 commits into from
Nov 9, 2022
Merged

Runtime and Compiler v2 #11

merged 263 commits into from
Nov 9, 2022
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 25, 2022

  1. Configuration menu
    Copy the full SHA
    5d410d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    519d22b View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2022

  1. Light refactoring

    josephjclark committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    a0fdfe5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d48d79 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c207d2 View commit details
    Browse the repository at this point in the history
  4. Update ts config (again)

    josephjclark committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    9247166 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    61f71f2 View commit details
    Browse the repository at this point in the history
  6. Allow simple job queues to be pre-parsed rather than loaded as modules

    Not really happy about this but at the moment it's needed for unit tests. vm.SourceTextModule doesn't seem to be available from inside the ava worker
    josephjclark committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    5be0607 View commit details
    Browse the repository at this point in the history
  7. Added a mock worker function

    We can use this in unit tests. Instead of calling out to the actual runtime (which throws errors reading vm.SourceTextModule, something  complicated with the --experimental-vm-modules flag not getting passed to the ava thread), we create a worker which calls our simple mock function. All the worker lifecycle stuff is abstracted into a helper function which is used equally by the actual and mock workers - which gives us a really realistic mokc simulation.
    josephjclark committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    b3a3843 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. Configuration menu
    Copy the full SHA
    7f4f575 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3be12a8 View commit details
    Browse the repository at this point in the history
  3. Use recast for parsing

    josephjclark committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    4a3118f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    567f92a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9b5c382 View commit details
    Browse the repository at this point in the history
  6. Little update to tests

    josephjclark committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    5903308 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

  1. Configuration menu
    Copy the full SHA
    386e6b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16743e3 View commit details
    Browse the repository at this point in the history
  3. Update and fix build

    josephjclark committed Aug 31, 2022
    Configuration menu
    Copy the full SHA
    f62572d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e2fd620 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9f3e351 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8c4d22c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0770f32 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    5735819 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d4699e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    17524ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a50b32e View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. Configuration menu
    Copy the full SHA
    e2be7ee View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Configuration menu
    Copy the full SHA
    0ada53a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1d1d58b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d3f3ada View commit details
    Browse the repository at this point in the history
  4. fix readme

    josephjclark committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    f950055 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Documentation

    josephjclark committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    8c9d4a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2cd8aa6 View commit details
    Browse the repository at this point in the history
  3. Had a go at adding unit tests for the sCLI

    Rather than spawning off a child process or anything, we just parse arguments and feed the main execute function with the result. This also means we can mock the filesystem.
    
    One gotcha is that recast seems to explode with mock-fs
    josephjclark committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    4b1bfcf View commit details
    Browse the repository at this point in the history
  4. Expand CLI tests

    josephjclark committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    3b01cfa View commit details
    Browse the repository at this point in the history
  5. docs

    josephjclark committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    4c67501 View commit details
    Browse the repository at this point in the history
  6. Fixed an issue compiling nested function calls at the top level

    fixed with unit tests and a documentation fix
    josephjclark committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    412e225 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2022

  1. Configuration menu
    Copy the full SHA
    3b22778 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aeaf40f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fffe357 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. Configuration menu
    Copy the full SHA
    11883ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a173d4 View commit details
    Browse the repository at this point in the history
  3. describe-package: add rollup build

    The current esbuild for this project seems to cause problems for other packages in this workspace. For example, compiler tests fail when importing anything from describe-package. I'm not sure what's going on here but using a rollup build, consistent with other packages, seems to help.
    
    I've left the esbuild stuff in place.
    josephjclark committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    adae5ea View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    065fbfe View commit details
    Browse the repository at this point in the history
  5. Enable the CLI to load exports for a module.

    This works from the command line but the test is being problematic.
    josephjclark committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    b96e3ff View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. describe-package: add unit tests on describeDts

    There's more work to do here, I just wanted to start feeling around what d.ts imports we currently can handle
    josephjclark committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    3ef7461 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81e930b View commit details
    Browse the repository at this point in the history
  3. cli: sort of fix unit test to auto-import language common

    it works with a mock adaptor, not the real one. Which is OK but not ideal.
    
    Had to restructure the CLI here to enable unit tests - this work is not complete
    josephjclark committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    43ccd06 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2b1e578 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Configuration menu
    Copy the full SHA
    650f24e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b4bdc1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    277d12f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b38a5e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    33a4206 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4e740f2 View commit details
    Browse the repository at this point in the history
  7. compiler: if there are no known imports for an adaptor, import any no…

    …n-global dangling identifiers
    
    This lets us compile legacy adaptors that don't have type definitions
    josephjclark committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    4a1ef0b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cb8669c View commit details
    Browse the repository at this point in the history
  9. Docs tweak

    josephjclark committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    529df93 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. Configuration menu
    Copy the full SHA
    14ddfa8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8da6b6c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ba59163 View commit details
    Browse the repository at this point in the history
  4. Add changeset support

    josephjclark authored and stuartc committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    1fc28fa View commit details
    Browse the repository at this point in the history
  5. Add initial changeset

    josephjclark authored and stuartc committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    3f6dc98 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b1163a6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b5ce654 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    395ee51 View commit details
    Browse the repository at this point in the history
  9. Fix builds

    stuartc committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    8ddd910 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #21 from OpenFn/changesets

    Add changesets support
    stuartc committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    eb5786c View commit details
    Browse the repository at this point in the history
  11. Update build stuff

    josephjclark committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    8148cd5 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. Added a utility to build a self-contained package

    This allowsus to test a global install against local builds
    josephjclark committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    86a9722 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a35af83 View commit details
    Browse the repository at this point in the history
  3. Updated docs

    josephjclark committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    988f321 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df36f9f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8a5311b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a04e8dd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    65a45ca View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f3a1011 View commit details
    Browse the repository at this point in the history
  9. Update changesets

    josephjclark committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    27c6434 View commit details
    Browse the repository at this point in the history
  10. Update CLI help

    josephjclark committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    7168944 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. version bumps

    stuartc committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    27a5929 View commit details
    Browse the repository at this point in the history
  2. version bump

    stuartc committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    9ff6f9a View commit details
    Browse the repository at this point in the history
  3. changeset publish public

    stuartc committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    0e10a53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1dc992e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fb2b570 View commit details
    Browse the repository at this point in the history
  6. workflow-diagram: port tests into ava

    One skipped because it needs checking by an adult
    josephjclark committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    66ce84d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    014d57e View commit details
    Browse the repository at this point in the history
  8. Update lockfile

    josephjclark committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    7d38a6c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6e1cec2 View commit details
    Browse the repository at this point in the history
  10. Update lockfile

    josephjclark committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    c1922a2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5ee00db View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e235aeb View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b354525 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5623913 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e7f0b06 View commit details
    Browse the repository at this point in the history
  16. version bump

    stuartc committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    2e0d282 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    03f3612 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    990c89d View commit details
    Browse the repository at this point in the history
  19. logger: notes

    josephjclark committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    ce02e56 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    7955801 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2022

  1. Configuration menu
    Copy the full SHA
    91482d5 View commit details
    Browse the repository at this point in the history
  2. Got last tests working

    josephjclark committed Sep 30, 2022
    Configuration menu
    Copy the full SHA
    1a1cdba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29b17c8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c88171a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    19803ef View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    47ca24c View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. Configuration menu
    Copy the full SHA
    7199862 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b200340 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e6d6f55 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8e3aeea View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c2def8d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ce3d9de View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1f5c3b5 View commit details
    Browse the repository at this point in the history
  8. Update lockfile

    josephjclark committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    b1db718 View commit details
    Browse the repository at this point in the history
  9. Fix various typings

    Went around the houses on this and removed types.d.ts - really I want a 'global' types declaration within the module and a good clean exported d.ts. Can't work out how to get there though
    josephjclark committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    36f237d View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. compiler: type tweaks

    josephjclark committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    a961dec View commit details
    Browse the repository at this point in the history
  2. logger: tidy typings

    josephjclark committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    2ba14ea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9d338c5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4b78249 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a40b3d8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a8135c7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2fc87bf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c1916c2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    656516c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f79bf9a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b26a40b View commit details
    Browse the repository at this point in the history
  12. typo in comment

    josephjclark committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    33dc68a View commit details
    Browse the repository at this point in the history
  13. Merge pull request #26 from OpenFn/logger

    New logger stuff
    josephjclark committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    e5c03ef View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c3ac471 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2022

  1. Configuration menu
    Copy the full SHA
    f49fec2 View commit details
    Browse the repository at this point in the history
  2. bump versions

    stuartc committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    4bea0ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    189171c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    45c19d0 View commit details
    Browse the repository at this point in the history
  5. noop

    stuartc committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    f7224d3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    92e5427 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    36814c5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ecbbc1b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2066074 View commit details
    Browse the repository at this point in the history
  10. added changeset

    josephjclark committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    1d293ae View commit details
    Browse the repository at this point in the history
  11. prettier tweak

    There is more work here on v2-tidyup but this was annoying me
    josephjclark committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    9bb86f8 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. bump versions

    stuartc committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    61bbbe8 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. Configuration menu
    Copy the full SHA
    57725d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c2d5ca8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c7d9bd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8a3ac5d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d7d4558 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6ccba72 View commit details
    Browse the repository at this point in the history
  7. Update cli build

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    5a8cc39 View commit details
    Browse the repository at this point in the history
  8. Update runtime build

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    6c16e33 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2c15bec View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1cd2023 View commit details
    Browse the repository at this point in the history
  11. update package lock

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    c06db83 View commit details
    Browse the repository at this point in the history
  12. Added changeset

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    28168a8 View commit details
    Browse the repository at this point in the history
  13. revert top level module

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    42f68fb View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ae88679 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    4021499 View commit details
    Browse the repository at this point in the history
  16. remove type check from ci

    Turns out we need to have a working build anyway
    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    9225d85 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    608d885 View commit details
    Browse the repository at this point in the history
  18. Update package authors

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    660c6ef View commit details
    Browse the repository at this point in the history
  19. logger: update readme

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    0399f9c View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    c329772 View commit details
    Browse the repository at this point in the history
  21. run prettier on logger

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    20bc216 View commit details
    Browse the repository at this point in the history
  22. cli: prettier

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    6d165a5 View commit details
    Browse the repository at this point in the history
  23. compiler: run prettier

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    5d1b193 View commit details
    Browse the repository at this point in the history
  24. log to null by default

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    f362d18 View commit details
    Browse the repository at this point in the history
  25. runtime: prettier

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    0fef5e9 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    65b264c View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    c46597d View commit details
    Browse the repository at this point in the history
  28. cli: tsc on test

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    8588ced View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    a823cc9 View commit details
    Browse the repository at this point in the history
  30. Update authors

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    0033ad6 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    87090f7 View commit details
    Browse the repository at this point in the history
  32. tweak package manifests

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    b371763 View commit details
    Browse the repository at this point in the history
  33. adjust ts settings

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    07e62fe View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    cda9984 View commit details
    Browse the repository at this point in the history
  35. Merge pull request #32 from OpenFn/v2-tidy

    Refactor build and typescript stuff in v2
    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    304528b View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    4446a22 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    c7523a4 View commit details
    Browse the repository at this point in the history
  38. Add changeset

    josephjclark committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    6d1d199 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2022

  1. Configuration menu
    Copy the full SHA
    47931eb View commit details
    Browse the repository at this point in the history
  2. changeset

    josephjclark committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    41bdfdc View commit details
    Browse the repository at this point in the history
  3. Update versions

    josephjclark committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    02dbe61 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    11cfc0b View commit details
    Browse the repository at this point in the history
  5. Updated package lock

    josephjclark committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    bc1ed6f View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2022

  1. Updated changeset version

    stuartc committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    b1ebd96 View commit details
    Browse the repository at this point in the history
  2. Updated changeset version

    stuartc committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    c18a4b0 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2022

  1. Merged changelogs

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    5371af0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #54 from OpenFn/import-globals

    Fix globals
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    68f234a View commit details
    Browse the repository at this point in the history
  3. runtime: Added some basic module management apis

    This is the heavy lifting of actually installing a module
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    65c9a53 View commit details
    Browse the repository at this point in the history
  4. Enable the linker to use the repo

    Pretty messy
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    7a5fa70 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0e1e228 View commit details
    Browse the repository at this point in the history
  6. cli: major refactor to allow proper commands, plus a new openfn insta…

    …ll command
    
    It almost works, too
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    da13aa9 View commit details
    Browse the repository at this point in the history
  7. runtime: restore some sanity to the repo

    - tidy some unnused and duplicated code
    - get name and version is now sync and dumb
    - fix module path helper
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    285d24d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3d3c686 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    67b0f67 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7846049 View commit details
    Browse the repository at this point in the history
  11. Update package lock

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    adc7135 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    20f4e8d View commit details
    Browse the repository at this point in the history
  13. runtime: some tidying

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    001d9e9 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    0625cf6 View commit details
    Browse the repository at this point in the history
  15. cli: pass repo to linker instead of modulesHome

    Still need to do the major modulesHome refactor here, though
    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    fda5fac View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    91cd64a View commit details
    Browse the repository at this point in the history
  17. changeset: logger

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    e9cbc06 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    e9f94ff View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    587c27a View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    d80997e View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    2e471a8 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    0852317 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    7b39345 View commit details
    Browse the repository at this point in the history
  24. cli: add test repo

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    e129913 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    e17d4e1 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    1e1d30c View commit details
    Browse the repository at this point in the history
  27. cli: add repo list

    josephjclark committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    ae33a15 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    82d6402 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2022

  1. Configuration menu
    Copy the full SHA
    202ee74 View commit details
    Browse the repository at this point in the history
  2. logger: add confirm utility function

    Can't really unit test much on this one, but I've added a mock implementation
    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    f1a957c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a1b234 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9e63e9d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cf6fd1c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f604cda View commit details
    Browse the repository at this point in the history
  7. cli: logging tweaks

    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    7569f9d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b45dcf4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6777383 View commit details
    Browse the repository at this point in the history
  10. cli: update logging

    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    1adf3e1 View commit details
    Browse the repository at this point in the history
  11. changeset: autoinstall

    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    ef9406b View commit details
    Browse the repository at this point in the history
  12. cli: remove unused line

    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    e663102 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    f2f8914 View commit details
    Browse the repository at this point in the history
  14. Update docs

    josephjclark committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    7c1b538 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1dfc036 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Merge pull request #56 from OpenFn/autoinstall

    Autoinstall
    stuartc committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    754c3b1 View commit details
    Browse the repository at this point in the history
  2. Update node to 18 on ci

    stuartc committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    ae20d77 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    73d8199 View commit details
    Browse the repository at this point in the history
  4. Fix typo

    stuartc committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    2bcbed7 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Configuration menu
    Copy the full SHA
    049bf66 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d1cd9c1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    75fa8ec View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    63a79b9 View commit details
    Browse the repository at this point in the history
  5. Update top readme

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    92ea7d8 View commit details
    Browse the repository at this point in the history
  6. Update docs

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    15797a5 View commit details
    Browse the repository at this point in the history
  7. Docs fix

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    077b849 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    81adb51 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    909e031 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7f7a1ab View commit details
    Browse the repository at this point in the history
  11. tweak readme

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    14c2c5e View commit details
    Browse the repository at this point in the history
  12. tweak readme again

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    1473b78 View commit details
    Browse the repository at this point in the history
  13. update package lock

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    56d33d9 View commit details
    Browse the repository at this point in the history
  14. skip failing test

    I know it's failing, I'm not sure why it's not skipped here...
    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    07fda1d View commit details
    Browse the repository at this point in the history
  15. describe-package: update failing test

    I thoughht I'd fixed this one too...
    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    3222eee View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f6c9771 View commit details
    Browse the repository at this point in the history
  17. changeset

    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    6c57303 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #61 from OpenFn/tidy-project

    Tidy project
    josephjclark committed Nov 8, 2022
    Configuration menu
    Copy the full SHA
    eb52b0d View commit details
    Browse the repository at this point in the history