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(clients): move source files to 'src' folder #2845

Merged
merged 11 commits into from
Sep 29, 2021

Commits on Sep 29, 2021

  1. Configuration menu
    Copy the full SHA
    db315bb View commit details
    Browse the repository at this point in the history
  2. chore: scripts to delete all files to be overriden

    for dir in ./clients/*; do (cd "$dir" && rm -rf *.ts commands models pagination protocols waiters); done
    for dir in ./protocol_tests/*; do (cd "$dir" && rm -rf *.ts commands models pagination protocols waiters tests); done
    trivikr committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    2b88fd6 View commit details
    Browse the repository at this point in the history
  3. chore: yarn generate-clients

    trivikr committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    031b2fc View commit details
    Browse the repository at this point in the history
  4. chore: update gitignore, tsconfig and package.json

    foreach parentDir ("clients" "protocol_tests")
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/\/dist\//\/dist-*/g' ./.gitignore); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/runtimeConfig/dist-es\/runtimeConfig/g' ./package.json); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/dist\//dist-/g' ./package.json); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/dist\//dist-/g' ./tsconfig.*); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/"outDir"/"rootDir":"src","outDir"/' ./tsconfig.json); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/^}$/,"exclude": ["test\/**\/*"]}/' ./tsconfig.json); done
      for dir in ./$parentDir/*; do (cd "$dir" && sed -i 's/^}$/,"exclude": ["test\/**\/*", "dist-types\/**\/*"]}/' ./tsconfig.types.json); done
    end
    trivikr committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    48945de View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aa56782 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4110565 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3f3b61c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    79dee7e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9eabfc1 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    928ce1c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bffb5a2 View commit details
    Browse the repository at this point in the history