@appsemble/cli 0.30.1 → 0.30.3

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 CHANGED
@@ -1,9 +1,9 @@
1
- # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.30.1/config/assets/logo.svg) Appsemble CLI
1
+ # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.30.3/config/assets/logo.svg) Appsemble CLI
2
2
 
3
3
  > Manage apps and blocks from the command line.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@appsemble/cli)](https://www.npmjs.com/package/@appsemble/cli)
6
- [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.30.1/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.30.1)
6
+ [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.30.3/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.30.3)
7
7
  [![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io)
8
8
 
9
9
  ## Table of Contents
@@ -248,7 +248,7 @@ npm install webpack@webpack-4 @appsemble/webpack-config
248
248
  ```
249
249
 
250
250
  For a more in-depth explanation of how to build apps, use our
251
- [block development guide](https://appsemble.app/docs/02-development/developing-blocks).
251
+ [block development guide](https://appsemble.app/docs/04-development/developing-blocks).
252
252
 
253
253
  ### Groups
254
254
 
@@ -323,5 +323,5 @@ appsemble run-cronjobs --interval 30
323
323
 
324
324
  ## License
325
325
 
326
- [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.30.1/LICENSE.md) ©
326
+ [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.30.3/LICENSE.md) ©
327
327
  [Appsemble](https://appsemble.com)
@@ -1,6 +1,6 @@
1
1
  import { type Argv } from 'yargs';
2
2
  import { type BaseArguments } from '../types.js';
3
- export declare const command = "cleanup-demo-users";
4
- export declare const description = "Deletes all demo users from the database.";
3
+ export declare const command = "cleanup-demo-app-members";
4
+ export declare const description = "Deletes all demo app members from the database.";
5
5
  export declare function builder(yargs: Argv): Argv<any>;
6
6
  export declare function handler(argv: BaseArguments): Promise<void>;
@@ -1,6 +1,6 @@
1
1
  import { serverImport } from '../lib/serverImport.js';
2
- export const command = 'cleanup-demo-users';
3
- export const description = 'Deletes all demo users from the database.';
2
+ export const command = 'cleanup-demo-app-members';
3
+ export const description = 'Deletes all demo app members from the database.';
4
4
  export function builder(yargs) {
5
5
  return yargs
6
6
  .option('database-host', {
@@ -33,8 +33,8 @@ export function builder(yargs) {
33
33
  });
34
34
  }
35
35
  export async function handler(argv) {
36
- const { cleanupDemoUsers, setArgv } = await serverImport('setArgv', 'cleanupDemoUsers');
36
+ const { cleanupDemoAppMembers, setArgv } = await serverImport('setArgv', 'cleanupDemoAppMembers');
37
37
  setArgv(argv);
38
- return cleanupDemoUsers();
38
+ return cleanupDemoAppMembers();
39
39
  }
40
- //# sourceMappingURL=cleanupDemoUsers.js.map
40
+ //# sourceMappingURL=cleanupDemoAppMembers.js.map
package/index.js CHANGED
@@ -8,7 +8,7 @@ import * as asset from './commands/asset/index.js';
8
8
  import * as block from './commands/block/index.js';
9
9
  import * as checkDownMigrations from './commands/checkDownMigrations.js';
10
10
  import * as checkMigrations from './commands/checkMigrations.js';
11
- import * as cleanupDemoUsers from './commands/cleanupDemoUsers.js';
11
+ import * as cleanupDemoAppMembers from './commands/cleanupDemoAppMembers.js';
12
12
  import * as cleanupResourcesAndAssets from './commands/cleanupResourcesAndAssets.js';
13
13
  import * as config from './commands/config/index.js';
14
14
  import * as fuzzMigrations from './commands/fuzzMigrations.js';
@@ -53,7 +53,7 @@ let parser = yargs(process.argv.slice(2))
53
53
  .command(asset)
54
54
  .command(block)
55
55
  .command(cleanupResourcesAndAssets)
56
- .command(cleanupDemoUsers)
56
+ .command(cleanupDemoAppMembers)
57
57
  .command(checkMigrations)
58
58
  .command(checkDownMigrations)
59
59
  .command(fuzzMigrations)