@thetypefounders/continue-with-google 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -11,9 +11,10 @@ npm install @thetypefounders/continue-with-google --save
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```javascript
|
|
14
|
-
import authenticate from '@thetypefounders/continue-with-google';
|
|
14
|
+
import { authenticate } from '@thetypefounders/continue-with-google';
|
|
15
|
+
import puppeteer from 'puppeteer';
|
|
15
16
|
|
|
16
|
-
const browser = await
|
|
17
|
+
const browser = await puppeteer.launch();
|
|
17
18
|
const page = await browser.newPage();
|
|
18
19
|
|
|
19
20
|
// Go to a page that supports Google.
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED