@axium/server 0.4.6 → 0.4.7

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/dist/database.js +3 -3
  2. package/package.json +1 -1
package/dist/database.js CHANGED
@@ -88,14 +88,14 @@ export async function statusText() {
88
88
  }
89
89
  export function shouldRecreate(opt) {
90
90
  if (opt.skip) {
91
- opt.output('warn', 'already exists. (skipped)\n');
91
+ opt.output('warn', 'already exists. (skipped)');
92
92
  return true;
93
93
  }
94
94
  if (opt.force) {
95
- opt.output('warn', 'already exists. (re-creating)\n');
95
+ opt.output('warn', 'already exists. (re-creating)');
96
96
  return false;
97
97
  }
98
- opt.output('warn', 'already exists. Use --skip to skip or --force to re-create.\n');
98
+ opt.output('warn', 'already exists. Use --skip to skip or --force to re-create.');
99
99
  throw 2;
100
100
  }
101
101
  export async function init(opt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/server",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "author": "James Prevett <axium@jamespre.dev> (https://jamespre.dev)",
5
5
  "funding": {
6
6
  "type": "individual",