@hellocoop/quickstart 2.6.0 → 2.6.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.
Files changed (2) hide show
  1. package/next.mjs +2 -3
  2. package/package.json +1 -1
package/next.mjs CHANGED
@@ -7,8 +7,8 @@ import fs from 'fs-extra'
7
7
  import quickstart from './index.js';
8
8
  import { randomBytes } from 'crypto'
9
9
 
10
- const HELLO_CONFIG_FILE = 'hello.config.ts'
11
- const HELLO_COOP_FILE = 'pages/api/hellocoop.ts'
10
+ const HELLO_CONFIG_FILE = 'hello.config.js'
11
+ const HELLO_COOP_FILE = 'pages/api/hellocoop.js'
12
12
  const ENV_FILE = '.env.local'
13
13
 
14
14
  import dotenv from 'dotenv'
@@ -36,7 +36,6 @@ config.client_id = '${client_id}'
36
36
  }
37
37
  const config =`// ${HELLO_CONFIG_FILE}
38
38
  // see https://hello.dev/docs/sdks/nextjs/#configuration for details
39
- import type { Config } from '@hellocoop/nextjs'
40
39
 
41
40
  const config = {
42
41
  client_id: '${client_id}',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hellocoop/quickstart",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "A CLI and module to start the Hello Quickstart web app and return a client_id",
5
5
  "main": "index.js",
6
6
  "bin": {