Your repository has two commits:
$ git log --oneline
957fbfb No, I am your father.
9bb71ff A long time ago in a galaxy far, far away....
| # Have origin be your fork, upstream is upstream. | |
| $ git remote -v | |
| origin [email protected]:jbeda/kubernetes.git (fetch) | |
| origin [email protected]:jbeda/kubernetes.git (push) | |
| upstream [email protected]:kubernetes/kubernetes.git (fetch) | |
| upstream [email protected]:kubernetes/kubernetes.git (push) | |
| # Make some changes to a bunch of files in a multi commit PR | |
| # Find the commit you want to tweak, copy the hash |
| # A BoxStarter script for use with http://boxstarter.org/WebLauncher | |
| # Updates a Windows machine and installs a range of developer tools | |
| # Allow unattended reboots | |
| $Boxstarter.RebootOk=$true | |
| $Boxstarter.NoPassword=$false | |
| $Boxstarter.AutoLogin=$true | |
| $checkpointPrefix = 'BoxStarter:Checkpoint:' |
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <[email protected]> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |
Note:
When this guide is more complete, the plan is to move it into Prepack documentation.
For now I put it out as a gist to gather initial feedback.
If you're building JavaScript apps, you might already be familiar with some tools that compile JavaScript code to equivalent JavaScript code:
| // Auth0 custom rule | |
| // Add Github Organizations to the user metadata | |
| // | |
| // This rule need the following configurations values | |
| // AUTH0_DOMAIN_NAME: your auth0 domain name | |
| // MANAGEMENT_CLIENT_ID: your auth0 management api client id | |
| // MANAGEMENT_CLIENT_SECRET: your auth0 management api client secret | |
| // | |
| // You have to create an Management API Application with proper | |
| // scope to allow rule to fetch user organizations. |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).