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

chore(copybara): sync commits from Aspect-internal silo #453

Merged
merged 4 commits into from
Jun 3, 2023

Commits on Jun 3, 2023

  1. fix: do not generate ts_project targets for dts only sources (#2383)

    Fix #422
    
    GitOrigin-RevId: d009c6c127f4c4e887c2b523d9e1caf477c34183
    jbedard authored and gregmagolan committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    5a8e4fc View commit details
    Browse the repository at this point in the history
  2. test: add gazell tests with invalid tsconfig json (#2375)

    Ref #440
    
    GitOrigin-RevId: d6167e5a5e99992dc56dc357bed110be7e1b8239
    jbedard authored and gregmagolan committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    bb70751 View commit details
    Browse the repository at this point in the history
  3. feat(gazelle): add support for custom targets (#1093)

    Add `js_custom[_test]_files` directives to generate custom targets in addition to the default library + tests targets.
    
    Example:
    ```
    # gazelle:js_custom_files {dirname}_po *.po.ts
    # gazelle:js_custom_test_files e2e *.e2e.ts
    ```
    
    will generate:
    
    ```
    ts_project(
        name = "{dirname}_po",
        srcs = ["a.po.ts"],
    )
    
    ts_project(
        name = "e2e",
        srcs = ["b.e2e.ts"],
        testonly = True,
    )
    ```
    
    Close #427
    
    GitOrigin-RevId: d982ebac0091253dc35302a9a580d8ec74cccf4d
    jbedard authored and gregmagolan committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    fa9d189 View commit details
    Browse the repository at this point in the history
  4. build: upgrade github.com/msolo/jsonr go library (#2404)

    Upgrades to the latest version of msolo/jsonr which the aspect-cli repo
    also has, this changes the error strings with invalid json requiring the
    test change.
    
    ### Type of change
    
    - Chore (any other change that doesn't affect source or test files, such
    as configuration)
    
    ### Test plan
    
    - Covered by existing test cases
    
    GitOrigin-RevId: cf991558bf10e1550d4ecbf95136e861a9aebf9b
    jbedard authored and gregmagolan committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    f4b34c2 View commit details
    Browse the repository at this point in the history