Closed vicb closed 4 months ago
The recent updates focus on renaming the project from "airspaces" to "fxc-tiles" and adjusting associated paths, configurations, and scripts accordingly. This includes changes to file paths in multiple configuration files, documentation updates, and enhancements to path resolution utilizing a new utility function. This ensures consistency and clarity across the project structure.
File | Change Summary |
---|---|
.eslintignore |
Removed apps/airspaces/src/assets/airspaces from ESLint ignore list. |
.prettierignore |
Modified path from /apps/airspaces/src/assets/airspaces to /apps/fxc-tiles/src/assets/airspaces . |
apps/fxc-tiles/.eslintrc.json |
Added /src/assets/airspaces/tiles/* to ignore patterns in ESLint configuration. |
apps/fxc-tiles/README.md |
Renamed project from "airspaces" to "fxc-tiles" and updated related paths and instructions. |
apps/fxc-tiles/jest.config.ts |
Updated displayName from 'airspaces' to 'fxc-tiles'. |
apps/fxc-tiles/package.json |
Changed package name to "fxc-tiles" and updated script path for download-airspaces . |
apps/fxc-tiles/project.json |
Renamed project to "fxc-tiles" and updated source root paths and entry points. |
.../create-geojson.ts |
Updated import paths and added dynamic path resolution using getAppFolderFromDist . |
.../create-tiles-info-diff.ts |
Utilized getAppFolderFromDist for dynamic path resolution. |
.../create-tiles-info.ts |
Used getAppFolderFromDist for updating paths dynamically. |
.../create-tiles.ts |
Adjusted paths using getAppFolderFromDist for better resolution. |
.../stats.ts |
Modified to use getAppFolderFromDist for dynamic input folder path determination. |
.../upload-tiles-diff.ts |
Updated paths using getAppFolderFromDist for dynamic resolution. |
apps/fxc-tiles/src/app/util.ts |
Added getAppFolderFromDist function for path manipulation. |
.../download.sh |
Corrected destination folder path for downloading openaip airspaces to point to fxc-tiles directory. |
In halls of code where rabbits spin, A project named 'airspaces' once did begin. Renamed to 'fxc-tiles', paths anew, Scripts and configs got their due. With dynamic paths, a fresh start, Hop on, for coding's heart! 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This pull request renames the project from 'airspaces' to 'fxc-tiles' and updates all relevant paths and configurations to reflect the new project structure. Key changes include updating import paths, default folder paths, and build commands. Additionally, a new utility function 'getAppFolderFromDist' is introduced to dynamically resolve paths.
Files | Changes |
---|---|
apps/fxc-tiles/src/app/airspaces/create-geojson.ts apps/fxc-tiles/src/app/airspaces/create-tiles-info.ts apps/fxc-tiles/src/app/airspaces/create-tiles-info-diff.ts apps/fxc-tiles/src/app/airspaces/create-tiles.ts apps/fxc-tiles/src/app/airspaces/stats.ts apps/fxc-tiles/src/app/airspaces/upload-tiles-diff.ts |
Updated import paths and default folder paths to use 'getAppFolderFromDist' utility function. |
Summary by Sourcery
This pull request renames the project from 'airspaces' to 'fxc-tiles', updating all relevant file paths, references, and documentation. It also introduces a utility function to dynamically resolve paths based on the distribution folder.
getAppFolderFromDist
to dynamically resolve paths based on the distribution folder.Summary by CodeRabbit
New Features
getAppFolderFromDist
.Bug Fixes
download.sh
script for downloading airspaces.Refactor
Documentation
README.md
for improved clarity and updated instructions for new project structure.