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

[v4.0] Switch parser to SWC and introduce native/WASM code #5073

Merged
merged 208 commits into from Sep 17, 2023

Commits on Jul 24, 2023

  1. Copy the full SHA
    5f2144b View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ad73845 View commit details
    Browse the repository at this point in the history
  3. Parse AST

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    c3cbe47 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    3b9bd65 View commit details
    Browse the repository at this point in the history
  5. Use SWC for parsing

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    e6650ef View commit details
    Browse the repository at this point in the history
  6. Extend AST conversion

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    e43c841 View commit details
    Browse the repository at this point in the history
  7. Make AST more similar

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    86919bf View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    e119555 View commit details
    Browse the repository at this point in the history
  9. Collect timings

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    3315d2b View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    c53a729 View commit details
    Browse the repository at this point in the history
  11. Refine parsing

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    ed56ac0 View commit details
    Browse the repository at this point in the history
  12. Extend parsing

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    c78a0e9 View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    3e59d9f View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    14abe7a View commit details
    Browse the repository at this point in the history
  15. Extend AST: BinaryExpression, ArrayPattern, ObjectPattern, Assignment…

    …PatternProperty, ArrayLiteral, ImportExpression
    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    4f36df0 View commit details
    Browse the repository at this point in the history
  16. Copy the full SHA
    1a2e1b9 View commit details
    Browse the repository at this point in the history
  17. Copy the full SHA
    df1ff09 View commit details
    Browse the repository at this point in the history
  18. Copy the full SHA
    eeb95e4 View commit details
    Browse the repository at this point in the history
  19. Copy the full SHA
    cca1ce1 View commit details
    Browse the repository at this point in the history
  20. Copy the full SHA
    8f522fa View commit details
    Browse the repository at this point in the history
  21. Copy the full SHA
    39124f5 View commit details
    Browse the repository at this point in the history
  22. Copy the full SHA
    152cae2 View commit details
    Browse the repository at this point in the history
  23. Extend AST: AssignmentPattern, AwaitExpression, BreakStatement

    Start sorting AST nodes
    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    57e6ac7 View commit details
    Browse the repository at this point in the history
  24. Copy the full SHA
    b7b9c38 View commit details
    Browse the repository at this point in the history
  25. Extend AST: ClassExpression, ContinueStatement, DebuggerStatement, Do…

    …WhileStatement, EmptyStatement
    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    22a4b3d View commit details
    Browse the repository at this point in the history
  26. Copy the full SHA
    aa8d6a7 View commit details
    Browse the repository at this point in the history
  27. Extend AST: IfStatement

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    a028d05 View commit details
    Browse the repository at this point in the history
  28. Copy the full SHA
    38adfac View commit details
    Browse the repository at this point in the history
  29. Copy the full SHA
    e35872b View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    4120885 View commit details
    Browse the repository at this point in the history
  31. Extend AST: MetaProperty

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    afa3edc View commit details
    Browse the repository at this point in the history
  32. Copy the full SHA
    aa85c82 View commit details
    Browse the repository at this point in the history
  33. Copy the full SHA
    85d7cfe View commit details
    Browse the repository at this point in the history
  34. Copy the full SHA
    1f1029d View commit details
    Browse the repository at this point in the history
  35. Copy the full SHA
    ac7b81c View commit details
    Browse the repository at this point in the history
  36. Copy the full SHA
    e2111c2 View commit details
    Browse the repository at this point in the history
  37. Extend AST: TaggedTemplateExpression, TemplateElement, TemplateLitera…

    …l, UnaryExpression, UpdateExpression, YieldExpression
    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    d66c071 View commit details
    Browse the repository at this point in the history
  38. Copy the full SHA
    559c5dc View commit details
    Browse the repository at this point in the history
  39. Finishing Fixes

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    a1fdc53 View commit details
    Browse the repository at this point in the history
  40. More fixes

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    a0ed09b View commit details
    Browse the repository at this point in the history
  41. Run cargo fmt

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    4a0639c View commit details
    Browse the repository at this point in the history
  42. Handle directives

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    b20b70c View commit details
    Browse the repository at this point in the history
  43. Minor fixes

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    14893ee View commit details
    Browse the repository at this point in the history
  44. Unicode support

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    45b6f99 View commit details
    Browse the repository at this point in the history
  45. Copy the full SHA
    feefee7 View commit details
    Browse the repository at this point in the history
  46. Adapt tests

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    23608f2 View commit details
    Browse the repository at this point in the history
  47. Do not run acorn anymore

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    09203ca View commit details
    Browse the repository at this point in the history
  48. Update lockfile

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    b1b0a12 View commit details
    Browse the repository at this point in the history
  49. Minor fixes

    lukastaegert committed Jul 24, 2023
    Copy the full SHA
    ebc11cb View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. Move to rust folder

    lukastaegert committed Jul 26, 2023
    Copy the full SHA
    331bb7d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    1350c78 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    a3fcf13 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Fix path issues

    lukastaegert committed Jul 27, 2023
    Copy the full SHA
    c7eafbd View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Copy the full SHA
    af80e08 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    f559cd2 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    5378791 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. Refine runWithEcho

    lukastaegert committed Jul 29, 2023
    Copy the full SHA
    23fee7d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d62f7dd View commit details
    Browse the repository at this point in the history
  3. Trigger change

    lukastaegert committed Jul 29, 2023
    Copy the full SHA
    92fe710 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    0c06d5f View commit details
    Browse the repository at this point in the history
  5. Use nightly toolchain

    lukastaegert committed Jul 29, 2023
    Copy the full SHA
    eda5243 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    87d105a View commit details
    Browse the repository at this point in the history
  7. Adapt workflow

    lukastaegert committed Jul 29, 2023
    Copy the full SHA
    74a5615 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    42d6f5c View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    63fb6a7 View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    bd080cb View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    1e83f98 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. Test MacOS/WIndows

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    b52b268 View commit details
    Browse the repository at this point in the history
  2. Fix bootstrap build

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    15d8f6e View commit details
    Browse the repository at this point in the history
  3. Skip tests

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    c2c6058 View commit details
    Browse the repository at this point in the history
  4. Rename workflow

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    14ae4fa View commit details
    Browse the repository at this point in the history
  5. Add additional tests

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    a1a0047 View commit details
    Browse the repository at this point in the history
  6. Use zig differently

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    1240bb4 View commit details
    Browse the repository at this point in the history
  7. Try to fix musl build

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    a2798b7 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    f09bc24 View commit details
    Browse the repository at this point in the history
  9. Skip musl again for now

    lukastaegert committed Jul 30, 2023
    Copy the full SHA
    a58a2b6 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Copy the full SHA
    5d8e903 View commit details
    Browse the repository at this point in the history
  2. Add publish to workflow

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    6e58ff0 View commit details
    Browse the repository at this point in the history
  3. 4.0.0-0

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    734806f View commit details
    Browse the repository at this point in the history
  4. Remove yarn lock again

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    d8562ec View commit details
    Browse the repository at this point in the history
  5. Fix coverage job

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    d64f411 View commit details
    Browse the repository at this point in the history
  6. Fix artefact handling

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    bcd5527 View commit details
    Browse the repository at this point in the history
  7. Revert "4.0.0-0"

    This reverts commit 734806f.
    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    7b151c9 View commit details
    Browse the repository at this point in the history
  8. 4.0.0-0

    lukastaegert committed Jul 31, 2023
    Copy the full SHA
    580d172 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Copy the full SHA
    22009cc View commit details
    Browse the repository at this point in the history
  2. Fix native npm packages

    lukastaegert committed Aug 1, 2023
    Copy the full SHA
    c1f43fc View commit details
    Browse the repository at this point in the history
  3. 4.0.0-1

    lukastaegert committed Aug 1, 2023
    Copy the full SHA
    d5b6ec3 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    2f44fb3 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    0816fe3 View commit details
    Browse the repository at this point in the history
  6. 4.0.0-2

    lukastaegert committed Aug 1, 2023
    Copy the full SHA
    d62558d View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Copy the full SHA
    3d3fa94 View commit details
    Browse the repository at this point in the history
  2. 4.0.0-3

    lukastaegert committed Aug 4, 2023
    Copy the full SHA
    d9deb72 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    4dfd12a View commit details
    Browse the repository at this point in the history
  4. 4.0.0-4

    lukastaegert committed Aug 4, 2023
    Copy the full SHA
    c416e3e View commit details
    Browse the repository at this point in the history
  5. feat: Add WASM browser build (#5077)

    * feat: add wasm browser build
    
    * move wasm binding into a separate cargo workspace
    
    * use imports replacing
    
    * set the targetEnv option of wasm to browser in browser build
    
    * add the wasm build to build command
    
    * fix lint error and ci error
    
    * add more comments to silence the linter
    
    * big change
    
    * trigger change
    
    * run browser tests
    
    * trigger change
    
    * tweak wasm build on CI
    TrickyPi committed Aug 4, 2023
    Copy the full SHA
    bdbc12f View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into rollup-swc

    # Conflicts:
    #	.github/workflows/tests.yml
    #	browser/package.json
    #	package-lock.json
    #	package.json
    lukastaegert committed Aug 4, 2023
    Copy the full SHA
    5db5f05 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2023

  1. Increase build timeout

    lukastaegert committed Aug 5, 2023
    Copy the full SHA
    f83d4fa View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    fcfc1f1 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    c454d97 View commit details
    Browse the repository at this point in the history
  4. Remove comment

    lukastaegert committed Aug 5, 2023
    Copy the full SHA
    8d4ea3b View commit details
    Browse the repository at this point in the history
  5. Get rid of dbg! calls

    lukastaegert committed Aug 5, 2023
    Copy the full SHA
    4192e41 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2023

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

Commits on Aug 7, 2023

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

Commits on Aug 10, 2023

  1. Copy the full SHA
    3de4529 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    e1b7a91 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    8ea5b01 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    2df9464 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Copy the full SHA
    9d4d22a View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2023

  1. Copy the full SHA
    737edd6 View commit details
    Browse the repository at this point in the history
  2. Adapt test

    lukastaegert committed Aug 12, 2023
    Copy the full SHA
    a90ebbd View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    d692407 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    2cfa6e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2023

  1. Copy the full SHA
    6aa28a1 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    e64cc5c View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2023

  1. Copy the full SHA
    f2fc841 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    c094cd9 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    cfe8d9a View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    ec3fb32 View commit details
    Browse the repository at this point in the history
  5. Run coverage again on CI

    lukastaegert committed Aug 15, 2023
    Copy the full SHA
    08cb46c View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

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

Commits on Aug 17, 2023

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

Commits on Aug 18, 2023

  1. Copy the full SHA
    8242dc9 View commit details
    Browse the repository at this point in the history
  2. Emit native.js to native.cjs

    TrickyPi committed Aug 18, 2023
    Copy the full SHA
    ada00c9 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    c0db2cd View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    4edc6fe View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    5c12c21 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2023

  1. Copy the full SHA
    be0faa4 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5c783b3 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2023

  1. Copy the full SHA
    188e6ee View commit details
    Browse the repository at this point in the history
  2. 4.0.0-5

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    6284e58 View commit details
    Browse the repository at this point in the history
  3. Fix copy-wasm-node.js

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    7bf85c7 View commit details
    Browse the repository at this point in the history
  4. 4.0.0-6

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    39e7492 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    0175038 View commit details
    Browse the repository at this point in the history
  6. 4.0.0-7

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    afaa754 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    e4fa028 View commit details
    Browse the repository at this point in the history
  8. 4.0.0-8

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    5bfa022 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    269e2e1 View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    c25940f View commit details
    Browse the repository at this point in the history
  11. 4.0.0-9

    TrickyPi committed Aug 20, 2023
    Copy the full SHA
    e4d5567 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2023

  1. Copy the full SHA
    4387e88 View commit details
    Browse the repository at this point in the history
  2. 4.0.0-10

    TrickyPi committed Aug 21, 2023
    Copy the full SHA
    2c7e3e3 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Prepare to fix ESM build

    Still requires bug-fix on Rollup side for relative external dependencies
    outside the ouput directory
    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    68156d8 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    c49210f View commit details
    Browse the repository at this point in the history
  3. Update Rollup

    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    cfe5f19 View commit details
    Browse the repository at this point in the history
  4. Enable ESM tests

    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    1801b7b View commit details
    Browse the repository at this point in the history
  5. Re-enable another test

    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    2226ad6 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    0ae28c8 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    3220c48 View commit details
    Browse the repository at this point in the history
  8. Fix extension

    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    1951fa7 View commit details
    Browse the repository at this point in the history
  9. Fix test

    lukastaegert committed Aug 22, 2023
    Copy the full SHA
    90da431 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Copy the full SHA
    1e18173 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    0638aa7 View commit details
    Browse the repository at this point in the history
  3. 4.0.0-11

    TrickyPi committed Aug 23, 2023
    Copy the full SHA
    3fc8b18 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    84b6e85 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    4c57d2b View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    8131e80 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    36ee724 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    f590196 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    512c706 View commit details
    Browse the repository at this point in the history
  10. 4.0.0-12

    TrickyPi committed Aug 23, 2023
    Copy the full SHA
    b6eec18 View commit details
    Browse the repository at this point in the history
  11. Tweak publish scripts

    TrickyPi committed Aug 23, 2023
    Copy the full SHA
    7b18446 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Copy the full SHA
    7a44ffd View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    7fcd6bb View commit details
    Browse the repository at this point in the history
  3. Remove acorn options

    lukastaegert committed Aug 24, 2023
    Copy the full SHA
    0c6aac6 View commit details
    Browse the repository at this point in the history
  4. Tweak getReadStringFunction

    TrickyPi committed Aug 24, 2023
    Copy the full SHA
    d0a6abf View commit details
    Browse the repository at this point in the history
  5. Fix browser tests

    TrickyPi committed Aug 24, 2023
    Copy the full SHA
    231cca2 View commit details
    Browse the repository at this point in the history
  6. 4.0.0-13

    TrickyPi committed Aug 24, 2023
    Copy the full SHA
    07d3bae View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Copy the full SHA
    ab9d27e View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    46b776f View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2023

  1. Copy the full SHA
    0247140 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    2b04d77 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    276d8a6 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. Copy the full SHA
    803f53e View commit details
    Browse the repository at this point in the history
  2. Update SWC version

    TrickyPi committed Aug 31, 2023
    Copy the full SHA
    7c27529 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2023

  1. Copy the full SHA
    5b4a916 View commit details
    Browse the repository at this point in the history
  2. Remove max-call-stack test

    SWC is not capable of handling it and we cannot fix it
    lukastaegert committed Sep 2, 2023
    Copy the full SHA
    a0fb0b1 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2023

  1. Improve coverage

    lukastaegert committed Sep 3, 2023
    Copy the full SHA
    34a00ca View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Copy the full SHA
    a79f6e0 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    9b91b7e View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    ecf8f68 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    90377cb View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    e3ba748 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2023

  1. Fix test

    lukastaegert committed Sep 9, 2023
    Copy the full SHA
    071876f View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2023

  1. Copy the full SHA
    3211a3c View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Preload wasm file in docs

    TrickyPi committed Sep 11, 2023
    Copy the full SHA
    99c7977 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    aec94ef View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Copy the full SHA
    b2ee509 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    38fa689 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. Copy the full SHA
    41d33cd View commit details
    Browse the repository at this point in the history
  2. Create release notes and comments from CI

    Minor change to maybe trigger a CI run
    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    0b0b2a8 View commit details
    Browse the repository at this point in the history
  3. Fix RegExp

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    a184a75 View commit details
    Browse the repository at this point in the history
  4. 4.0.0-14

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    ec2f8ec View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    5d90097 View commit details
    Browse the repository at this point in the history
  6. Fix RegExp use

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    ae073d4 View commit details
    Browse the repository at this point in the history
  7. 4.0.0-15

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    6e61866 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    123d640 View commit details
    Browse the repository at this point in the history
  9. 4.0.0-16

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    fd025bc View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    f7c567e View commit details
    Browse the repository at this point in the history
  11. 4.0.0-17

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    f7eb39f View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    4f10e3f View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    4fcf777 View commit details
    Browse the repository at this point in the history
  14. 4.0.0-18

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    646171f View commit details
    Browse the repository at this point in the history
  15. Add proper permissions

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    8e3f994 View commit details
    Browse the repository at this point in the history
  16. 4.0.0-19

    lukastaegert committed Sep 15, 2023
    Copy the full SHA
    25753ad View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2023

  1. Copy the full SHA
    b38bc92 View commit details
    Browse the repository at this point in the history
  2. Use Double quotation marks instead of Single quotation marks if concu…

    …rrently scripts with flags
    TrickyPi committed Sep 16, 2023
    Copy the full SHA
    1394252 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2023

  1. Copy the full SHA
    82c5941 View commit details
    Browse the repository at this point in the history
  2. Update CONTRIBUTING.md

    lukastaegert committed Sep 17, 2023
    Copy the full SHA
    988ce9d View commit details
    Browse the repository at this point in the history