From ad642bc003391922ada041fd4bca55ddac389c6d Mon Sep 17 00:00:00 2001 From: tycrek Date: Thu, 14 Oct 2021 19:28:55 -0600 Subject: [PATCH] Lowercased NPM -> npm as per branding FAQ --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/README.md | 12 ++++++------ src/setup.js | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f50d028..0108b1e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,7 +11,7 @@ - Operating System: - Node version: -- NPM version: +- npm version: ## Description diff --git a/.github/README.md b/.github/README.md index 3c08d8b..df6531b 100644 --- a/.github/README.md +++ b/.github/README.md @@ -333,21 +333,21 @@ ass is intended to provide a strong backend for developers to build their own fr | Name | Description | Links | | :--: | ----------- | :---: | -| **JSON** | JSON-based data storage. On disk, data is stored in a JSON file. In memory, data is stored in a [Map]. This is the default engine. | [GitHub][GH ASE]
[NPM][NPM ASE] | -| **PostgreSQL** | Data storage using a [PostgreSQL] database. [node-postgres] is used for communicating with the database. | [GitHub][GH APSQL]
[NPM][NPM APSQL] | -| **Mongoose** | Data storage using a [MongoDB] database. [mongoose] is used for communicating with the database. Created by [@dylancl] | [GitHub][GH AMongoose]
[NPM][NPM AMongoose] | +| **JSON** | JSON-based data storage. On disk, data is stored in a JSON file. In memory, data is stored in a [Map]. This is the default engine. | [GitHub][GH ASE]
[npm][npm ASE] | +| **PostgreSQL** | Data storage using a [PostgreSQL] database. [node-postgres] is used for communicating with the database. | [GitHub][GH APSQL]
[npm][npm APSQL] | +| **Mongoose** | Data storage using a [MongoDB] database. [mongoose] is used for communicating with the database. Created by [@dylancl] | [GitHub][GH AMongoose]
[npm][npm AMongoose] | [Map]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map [GH ASE]: https://github.com/tycrek/papito/ -[NPM ASE]: https://www.npmjs.com/package/@tycrek/papito +[npm ASE]: https://www.npmjs.com/package/@tycrek/papito [PostgreSQL]: https://www.postgresql.org/ [node-postgres]: https://node-postgres.com/ [GH APSQL]: https://github.com/tycrek/ass-psql/ -[NPM APSQL]: https://www.npmjs.com/package/@tycrek/ass-psql +[npm APSQL]: https://www.npmjs.com/package/@tycrek/ass-psql [MongoDB]: https://www.mongodb.com/ [mongoose]: https://mongoosejs.com/ [GH AMongoose]: https://github.com/dylancl/ass-mongoose -[NPM AMongoose]: https://www.npmjs.com/package/ass-mongoose +[npm AMongoose]: https://www.npmjs.com/package/ass-mongoose [@dylancl]: https://github.com/dylancl A Papito data engine implements support for one type of database (or file, such as JSON or YAML). This lets ass server hosts pick their database of choice, because all they'll have to do is enter the connection/authentication details, and ass will handle the rest, using the resource ID as the key. diff --git a/src/setup.js b/src/setup.js index b6c9913..15fa130 100644 --- a/src/setup.js +++ b/src/setup.js @@ -161,7 +161,7 @@ function doSetup() { required: false }, dataEngine: { - description: 'Data engine to use (must match an NPM package name. If unsure, leave blank)', + description: 'Data engine to use (must match an npm package name. If unsure, leave blank)', type: 'string', default: config.dataEngine, required: false