Skip to content

Commit

Permalink
Merge pull request #121 from Exabyte-io/update/made-code-esse
Browse files Browse the repository at this point in the history
chore: update made-code-esse references
  • Loading branch information
timurbazhirov committed Mar 26, 2024
2 parents abd5b8f + 1a3faab commit b10e69b
Show file tree
Hide file tree
Showing 7 changed files with 853 additions and 685 deletions.
2 changes: 1 addition & 1 deletion build_filter_trees.js
Expand Up @@ -2,7 +2,7 @@ const fs = require("fs");
const path = require("path");
const yaml = require("js-yaml");
const lodash = require("lodash");
const utils = require("@exabyte-io/code.js/dist/utils");
const utils = require("@mat3ra/code/dist/js/utils");

const MODEL_ASSET_PATH = path.resolve(__dirname, "models");
const METHOD_ASSET_PATH = path.resolve(__dirname, "methods");
Expand Down
2 changes: 1 addition & 1 deletion build_templates.js
Expand Up @@ -5,7 +5,7 @@
*/
const fs = require("fs");
const yaml = require("js-yaml");
const utils = require("@exabyte-io/code.js/dist/utils");
const utils = require("@mat3ra/code/dist/js/utils");

function buildAsset({ assetPath, targetPath, dataKey = "" }) {
const fileContent = fs.readFileSync(assetPath);
Expand Down
1,522 changes: 844 additions & 678 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -26,7 +26,8 @@
"homepage": "https://github.com/Exabyte-io/application-flavors",
"devDependencies": {
"@exabyte-io/eslint-config": "^2022.11.17-0",
"@exabyte-io/code.js": "2023.11.22-0",
"@mat3ra/code": "2024.3.25-3",
"@mat3ra/esse": "^2024.3.25-6",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.2",
Expand Down Expand Up @@ -60,7 +61,8 @@
"underscore.string": "^3.3.4"
},
"peerDependencies": {
"@exabyte-io/code.js": "*"
"@mat3ra/code": "*",
"@mat3ra/esse": "*"
},
"engines": {
"node": ">=12.0",
Expand Down
2 changes: 1 addition & 1 deletion src/js/assets.js
@@ -1,4 +1,4 @@
import { JsYamlAllSchemas } from "@exabyte-io/code.js/dist/utils";
import { JsYamlAllSchemas } from "@mat3ra/code/dist/js/utils";
import fs from "fs";
import yaml from "js-yaml";

Expand Down
2 changes: 1 addition & 1 deletion src/js/methods.js
@@ -1,4 +1,4 @@
import { filterEntityList } from "@exabyte-io/code.js/dist/utils";
import { filterEntityList } from "@mat3ra/code/dist/js/utils";

import { methods as applicationMethodMap } from "./data/filter_trees";
import { getFilterObjects } from "./models";
Expand Down
2 changes: 1 addition & 1 deletion src/js/models.js
Expand Up @@ -2,7 +2,7 @@ import {
filterEntityList,
findPreviousVersion,
mergeTerminalNodes,
} from "@exabyte-io/code.js/dist/utils";
} from "@mat3ra/code/dist/js/utils";
import lodash from "lodash";

import { models as applicationModelMap } from "./data/filter_trees";
Expand Down

0 comments on commit b10e69b

Please sign in to comment.