Skip to content

Commits

Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Feb 19, 2023

  1. Merge pull request testdouble#505 from testdouble/build-on-windows

    Add windows to the build
    searls committed Feb 19, 2023
    Copy the full SHA
    b30d2f4 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d5088b7 View commit details
    Browse the repository at this point in the history
  3. Merge pull request testdouble#506 from webstech/cw/winwin

    ci: improve Windows support
    searls committed Feb 19, 2023
    Copy the full SHA
    56d5b2b View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2023

  1. ci: do not expect shebang support on Windows

    Specify command to run in scripts named 'test:example:*'.
    
    Signed-off-by: Chris. Webster <chris@webstech.net>
    webstech committed Feb 13, 2023
    Copy the full SHA
    114a379 View commit details
    Browse the repository at this point in the history
  2. dev: support Windows based developers

    Add control so files are checked out with lf and not crlf.  A number of
    tests are shell scripts that run under bash and Windows lineends are not
    supported.
    
    Signed-off-by: Chris. Webster <chris@webstech.net>
    webstech committed Feb 13, 2023
    Copy the full SHA
    6dbff22 View commit details
    Browse the repository at this point in the history
  3. ci - teenytest-proxy Windows support

    npm installs packages differently based on the platform.  The `.bin`
    entry the proxy was using is a symlink on UNIX type platforms but may have
    three different forms on WIndows.  The actual installed package will
    now  be required directly.  This is still a temporary patch pending
    fixes for the issues identified in the proxy file.
    
    Signed-off-by: Chris. Webster <chris@webstech.net>
    webstech committed Feb 13, 2023
    Copy the full SHA
    b4647ab View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2023

  1. Merge pull request testdouble#504 from Trim/document-replaceesm-api

    add documentation for td.replaceEsm API
    searls committed Feb 12, 2023
    Copy the full SHA
    9694bb3 View commit details
    Browse the repository at this point in the history
  2. boot circle

    searls committed Feb 12, 2023
    Copy the full SHA
    af7cdb6 View commit details
    Browse the repository at this point in the history
  3. give up on node 14 for now

    searls committed Feb 12, 2023
    Copy the full SHA
    05b55be View commit details
    Browse the repository at this point in the history
  4. add windows to the build

    searls committed Feb 12, 2023
    Copy the full SHA
    903ae7f View commit details
    Browse the repository at this point in the history
  5. stick to ubuntu

    searls committed Feb 12, 2023
    Copy the full SHA
    58c71fb View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    930199b View commit details
    Browse the repository at this point in the history
  7. maybe double quotes will work?

    searls committed Feb 12, 2023
    Copy the full SHA
    b904886 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    9b602c3 View commit details
    Browse the repository at this point in the history
  9. Remove esm flag

    searls committed Feb 12, 2023
    Copy the full SHA
    cc913e9 View commit details
    Browse the repository at this point in the history
  10. Make this test "work" on Windows

    This test was a stupid idea btw
    searls committed Feb 12, 2023
    Copy the full SHA
    1d06166 View commit details
    Browse the repository at this point in the history
  11. It isn't clear why this won't work with npm ci but I assume it has so…

    …mething to do with local paths
    searls committed Feb 12, 2023
    Copy the full SHA
    50b7641 View commit details
    Browse the repository at this point in the history
  12. Upgrade deps

    searls committed Feb 12, 2023
    Copy the full SHA
    f25a564 View commit details
    Browse the repository at this point in the history
  13. Update deps

    searls committed Feb 12, 2023
    Copy the full SHA
    18c746d View commit details
    Browse the repository at this point in the history
  14. maybe 14 doesn't work

    searls committed Feb 12, 2023
    Copy the full SHA
    94eb68b View commit details
    Browse the repository at this point in the history
  15. Copy the full SHA
    32cca90 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. add documentation for td.replaceEsm API

    The API for `td.replaceEsm` differs a bit in argument interpretation
    compared to `td.replace` one, explain it and give documentation reference to
    `quibble.esm`.
    Trim committed Feb 7, 2023
    Copy the full SHA
    2645daf View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. Merge pull request testdouble#501 from mcous/docs-vitest

    docs: add testdouble-vitest links to docs
    searls committed Nov 23, 2022
    Copy the full SHA
    6535986 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5f1a959 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2022

  1. 3.16.8

    searls committed Nov 16, 2022
    Copy the full SHA
    47bf3da View commit details
    Browse the repository at this point in the history
  2. changelog

    searls committed Nov 16, 2022
    Copy the full SHA
    2b76fd2 View commit details
    Browse the repository at this point in the history
  3. drop 14.x from tests

    searls committed Nov 16, 2022
    Copy the full SHA
    1b1810a View commit details
    Browse the repository at this point in the history
  4. Merge pull request testdouble#500 from quinnturner/patch-1

    fix: replaceEsm typings
    searls committed Nov 16, 2022
    Copy the full SHA
    ffdf3ad View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    7b20b76 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    6ef85f9 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. fix: replaceEsm typings

    Currently:
    
    ```ts
    // `subscriptions` is `void`
    const subscriptions = await td.replaceEsm(
          '../../subscriptions.js',
    );
    ```
    
    Now:
    
    ```ts
    // `subscriptions` is `{ [namedExport: string]: any; default?: any; }`
    const subscriptions = await td.replaceEsm(
          '../../subscriptions.js',
    );
    ```
    quinnturner committed Nov 14, 2022
    Copy the full SHA
    2b24cff View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    7c96564 View commit details
    Browse the repository at this point in the history
  3. update changelog

    searls committed Nov 14, 2022
    Copy the full SHA
    3206d67 View commit details
    Browse the repository at this point in the history
  4. 3.16.7

    searls committed Nov 14, 2022
    Copy the full SHA
    3639d46 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2022

  1. Copy the full SHA
    0825a6a View commit details
    Browse the repository at this point in the history
Older