Skip to content

Commit

Permalink
Fix Node bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaVerou committed Oct 16, 2023
1 parent cd4ffe5 commit fdd332d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion formats/csv/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Format from "../../src/format.js";
import { parse, stringify } from "/lib/csv/dist/esm/sync.js";
import { parse, stringify } from "../../lib/csv/dist/esm/sync.js";

export default class CSV extends Format {
static defaultOptions = {
Expand Down
2 changes: 1 addition & 1 deletion formats/yaml/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Format from "../../src/format.js";
import { parse, stringify } from "/lib/yaml/browser/index.js";
import { parse, stringify } from "../../lib/yaml/browser/index.js";

export default class YAML extends Format {
static extensions = ["yaml", "yml"];
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "madata",
"version": "0.0.1-alpha.1",
"description": "",
"main": "index.html",
"main": "js/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "npx postcss \"**/*.postcss\" --base . --dir . --ext .css --config _build/postcss.config.cjs",
Expand Down
3 changes: 2 additions & 1 deletion src/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ export default class Backend extends EventTarget {
}

/**
* Auth Provider to use
* Auth Provider to use.
* This is only relevant for OAuthBackend, but specifying here as Backend is the only class users import.
*/
static authProvider = "https://auth.madata.dev"

Expand Down

0 comments on commit fdd332d

Please sign in to comment.