This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| import fs from 'node:fs'; | |
| import { Octokit } from 'octokit'; | |
| const packages = fs.readdirSync( './node_modules', { withFileTypes: true } ).filter( x => x.isDirectory() && x.name[ 0 ] !== '@' ).map( x => x.name ); | |
| const octokit = new Octokit( { | |
| auth: `token ${ process.env.GITHUB_AUTH_TOKEN }`, | |
| } ); | |
| const errors = []; | |
| const claudes = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Register the plugin with Capacitor | |
| import { Plugins } from '@capacitor/core'; | |
| const { Keyboard } = Plugins; | |
| // ORIENTATION | |
| // Start tracking device orientation. This must be run in order for the following event listener to work | |
| iosMotion.getOrientation() |