@authrim/setup 0.1.7 → 0.1.8

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.
@@ -23,7 +23,7 @@ function printBanner() {
23
23
  console.log('');
24
24
  console.log(chalk.blue('╔═══════════════════════════════════════════════════════════╗'));
25
25
  console.log(chalk.blue('║') +
26
- chalk.bold.white(' 🔐 Authrim Setup v0.1.7 ') +
26
+ chalk.bold.white(' 🔐 Authrim Setup v0.1.8 ') +
27
27
  chalk.blue('║'));
28
28
  console.log(chalk.blue('║') +
29
29
  chalk.gray(' OIDC Provider on Cloudflare Workers ') +
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ const program = new Command();
15
15
  program
16
16
  .name('authrim-setup')
17
17
  .description('CLI tool for setting up Authrim OIDC Provider on Cloudflare Workers')
18
- .version('0.1.7');
18
+ .version('0.1.8');
19
19
  program
20
20
  .command('init', { isDefault: true })
21
21
  .description('Initialize a new Authrim setup')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authrim/setup",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "CLI tool for setting up Authrim OIDC Provider on Cloudflare Workers",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,8 @@
10
10
  "types": "./dist/index.d.ts",
11
11
  "files": [
12
12
  "dist",
13
- "templates"
13
+ "templates",
14
+ "README.md"
14
15
  ],
15
16
  "scripts": {
16
17
  "build": "tsc",