* working docusaurus site. mostly stock with a few minor tweaks.
* set light/dark mode colors
* Update README main header link. Add GitHub logo (light and dark mode variants) to docsite header bar.
* accessibility fixes
* Clear out footer, leaving copyright. Always use darktheme when showing code to fix contrast issues. Change github icon to inline SVG. Add examples of Important and Caution blocks in markdown. Change link colors to match RNW and RN sites.
* Move into doc into hierarchy (styles don't support top-level docs). Reinstate homepage feature area, which now appears to be a little broken.
* Add MS Open Source img and link as footer logo. Also tweak CSS: inline code formatting in markdown, color refining/sharing, footer logo size/opacity.
* Remove opacity styles on footer -- they happen automatically since it is a link.
* Finalize landing page. Move GitHub logo into an .svg file.
* Fix editUrls.
* fix homepage text
* Add local-search support and styling. Not too happy with this. Out of the box, local search uses Algolia's color scheme and doesn't pick up Docusaurus colors. I have it polished and working, though. Going to try using the DocSearch-based service instead which is supposed to integrate w/Docusaurus CSS vars.
* Update docusaurus version
* Create navbar hierarchy and matching sidebars. Remove inline front-matter tags and category files, and instead be get name from markdown title and order from sidebar.js.
* Use a very dark gray background instead of black in darkmode. Fix typo in navbar.
* add shadow on navbar in darkmode
* Remove sample content
* docs(changeset): Documentation site framework and theming. No content yet other than the landing page.
* yarn deduplicate
* update dup checker tests -- they are sensitive to the yarn dependency graph in this repo
* align dependencies
* baseline
* Create the typescript-react-native-resolver package
* Fix resolver bug and add tests for host.ts.
* Change files
* update readme
* Update the CLI's Metro/TS integration to use the new, generalized resolver in @rnx-kit/typescript-react-native-resolver. Remove the unneeded "default" resolver.
* Change files
* Remove @rnx-kit/metro-plugin-typescript-validation. This has been superceded by the built-in CLI support for running Metro with TypeScript when rnx-kit config has type-checking enabled.
* revert test code
* Change files
* remove old change file
* Change files
* change file
* update readme
* PR feedback
* Move TPN CLI from bin to lib and publish from there.
* Fix TPN CLI path
* Add tasks to download, install, build, and run Go programs as part of the build environment. In each package, Go source is under /go/<project> and binaries are compiled to /bin.
* repalce ?. with equivalent code
* Replace ?. with equivalent code
* fix windows plaform name in go distro list
* fix go executable filename on windows
* Change files
* Change build-tools build output to verbose for CI loops. Doesn't appear to be a way to keep dev builds as warning-only without duplicating preinstall/posinstall commands (which I don't want to maintain).
* separate go task for hello world example
* Add a Go build step to each package build
* Add missing dependency
* Change files
* Move Go infra into its own package so other repos can use it. Add documentation. Remove dependency on just-scripts.
* Change files
* update readme file
* Update packages/go/README.md
Co-authored-by: Lorenzo Sciandra <lsciandra@microsoft.com>
* Update packages/go/README.md
Co-authored-by: Tommy Nguyen <4123478+tido64@users.noreply.github.com>
* Rename package from go to golang. Revert loglevel on yarn build-tools.
* Add handling for non-monorepo cases.
* Update packages/golang/package.json
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Lorenzo Sciandra <lsciandra@microsoft.com>
Co-authored-by: Tommy Nguyen <4123478+tido64@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This is similar to the babel-plugin-import-path remapper.
Having a monorepo of local packages that compiles from typescript source code in
`src/` to distributed javascript in `lib/`, this plugin rewrites all imports
from pointing to the generated artifacts to point directly to the source. This
makes it possible to consume local packages without first having to compile
them.
* Create a tools package
* Integrate tools package and other common libraries throughout monorepo, removing custom code.
* Change files
* Address PR feedback. Add impl of pickValue and pickValues, as lodash.pick() wasn't behaving as expected and seems to do a lot of work.
* revert make-dir package usage
* Split @rnx-kit/tools into separate packages which are more well-defined. Update all impacted code.
* update readme
* Change files
* update change file
* PR feedback - allowSymlinks
* Fix call sites for symlink changes
* Update top-level README
* Fix link
* fix link
* Fix type
* Update language regarding status of rnx-kit and our support statement.
* Update config package docs
* Update READMEs using automation
* Remove parameters which have no effect in Metro.
* fix typos
* Write a CLI readme file. Update RN CLI docs. Remove unused CLI options.
* update generated tables in readme
* fix typo
* add notes on contributing and releasing
* fix dep-check generated package versions
* Add Metro types, and reorganize them into a file & directory structure that mirrors Metro. This makes it possible to keep track of what types we've ported, and what types we haven't. There are A LOT of types in Metro.
* Fix types after metro type update
* Change files
* fix change file description
* Add a metro-service package for interacting with metro at an API level, rather than through its command-line interface.
* update dependencies
* add mkdirp dependency
* Change files
* update readme
* create empty package
* Working prototype of in-proc typescript language service (tsserver). Demonstrates loading config, validating a clean ts file, validating a broken ts file, and printing diagnostics.
* Update metro, rnc-cli, and react-native packages to latest, which includes transformOptions in metro graph object. Fix tests.
* Revert peerDependency change
* bump metro, react-native, and cli versions
* rename package to typescript-service
* fix path after package rename
* remove unneeded file after rename
* Refactored into a cleaner API
* Formalize the typescript service API. Fix bugs, improve performance.
* Continued organizing code into consumable interfaces/classes. Added comprehensive test suite.
* Add a Service layer on top of Project. Continue refining the API and adding tests.
* Add README file. Remove test code. Update package description. Make validation calls return true/false, indicating whether or not the file/project was type-safe.
* Revert package changes used for local testing
* Update yarn lockfile
* Change files
* Fix overspecified test/snapshot
* Add path normalization to collapse equivalent forms of the same path down to one form. This makes it usable as a cache-key.
* Fix case-sensitivity bug on unix.
* Align typescript dependency versions
* Remove unneeded resolver reference.
* Remove TODOs. Optimize type reference resolver.
* Move moduleResolutionHost outside of the resolver functions so they can share a single instance rather than creating their own each time they run.
* Make imports consistent.
* Move to a more loose dependency on typescript.
* Update readme
* Change files
* Add a type guard to isNonEmptyArray