https://github.com/rhdeck/fastlane-js
Fastlane Mobile Deployment tools for Javascript
https://github.com/rhdeck/fastlane-js
Last synced: about 1 year ago
JSON representation
Fastlane Mobile Deployment tools for Javascript
- Host: GitHub
- URL: https://github.com/rhdeck/fastlane-js
- Owner: rhdeck
- License: mit
- Created: 2020-06-17T14:37:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T06:04:51.000Z (about 2 years ago)
- Last Synced: 2025-03-27T21:51:49.409Z (about 1 year ago)
- Language: HTML
- Homepage: https://rhdeck.github.io/fastlane-js/packages/fastlane/docs
- Size: 7.94 MB
- Stars: 24
- Watchers: 1
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fastlane-js
Monorepo for fastlane.js: App Automation done right... in Javascript!
This repo contains four projects key to the fastlane-js build process.
For most use cases go straight to the [fastlane package](packages/fastlane).
## [fastlane-api](packages/fastlane-api)
A tool to automatically generate the inputs and outputs of almost all fastlane actions, uaing the same interface as the Fastlane Swift code generator. Deployed on NPM as `@fastlanejs/fastlane-api`
## [fastlane-base](packages/fastlane-base)
Core socket client for communicating with the fastlane ruby server. Generalized inputs and outputs with error handling, but is dumb about the specific actions. Deployed on NPM as `@fastlanejs/fastlane-base`
## [make-fastlane](packages/make-fastlane)
Code generator to use the info from `fastlane-api` and generate a typescript wrapper for the complete API.
## [fastlane](packages/fastlane)
Auto-generated (by `make-fastlane`) library for accessing all fastlane actions (extending `fastlane-base`) and introducing `fastfile.js` support to more easily create scripts to `async/await` your way through shipping. Deployed on NPM as `fastlanejs`