@mindline/sync 1.0.16 → 1.0.17

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/index.js +0 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -126,7 +126,6 @@ import workspaces from "./workspaces.json";
126
126
  // retrieve Workspace(s), User(s), Target(s), Config(s) given logged in user
127
127
  export function InitGet(user, ii)
128
128
  {
129
- debugger;
130
129
  // for now, just get hardcoded data from JSON
131
130
  var usersString = JSON.stringify(users);
132
131
  var targetsString = JSON.stringify(targets);
@@ -138,7 +137,6 @@ export function InitGet(user, ii)
138
137
  ii.cs = deserializeArray(Config, configsString);
139
138
  ii.ws = deserializeArray(Workspace, workspacesString);
140
139
  if(!ii.initWorkspaceIDs()) return false;
141
- debugger;
142
140
  } catch (e) {
143
141
  debugger;
144
142
  return false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
3
  "type": "module",
4
- "version": "1.0.16",
4
+ "version": "1.0.17",
5
5
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",
6
6
  "exports": "./index.js",
7
7
  "scripts": {