Skip to content

Commit

Permalink
chore: update made-code-esse references
Browse files Browse the repository at this point in the history
  • Loading branch information
timurbazhirov committed Mar 26, 2024
1 parent 1fb980d commit 54b1f17
Show file tree
Hide file tree
Showing 7 changed files with 1,378 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["@exabyte-io/eslint-config"],
"globals": {
"Highcharts": "readonly",
"Highcharts": "readonly"
}
}
5 changes: 3 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
if: github.repository != 'Exabyte-io/template-definitions'
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version:
- 14.x
- 20.x

steps:
- name: Checkout this repository
Expand Down Expand Up @@ -53,7 +55,6 @@ jobs:
- name: Publish JS release
uses: ./actions/js/publish
with:
node-version: 12.21.x
npm-token: ${{ secrets.NPM_TOKEN }}
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}

1,394 changes: 1,364 additions & 30 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@
"underscore.string": "^3.3.4"
},
"devDependencies": {
"@exabyte-io/code.js": "2022.7.28-1",
"@exabyte-io/eslint-config": "^2022.11.17-0",
"@mat3ra/code": "2024.3.25-3",
"@mat3ra/esse": "2024.3.25-6",
"@mat3ra/made": "2024.3.23-1",
"chai": "^4.3.4",
"eslint": "7.32.0",
Expand All @@ -65,11 +66,12 @@
"prettier": "^2.7.1"
},
"peerDependencies": {
"@exabyte-io/code.js": "*",
"@mat3ra/code": "*",
"@mat3ra/esse": "*",
"@mat3ra/made": "*"
},
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
Expand Down
2 changes: 1 addition & 1 deletion src/include/non-scalar/band_gaps.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { deepClone, flattenObject } from "@exabyte-io/code.js/dist/utils";
import { deepClone, flattenObject } from "@mat3ra/code/dist/js/utils";

import { Property } from "../../property";

Expand Down
4 changes: 2 additions & 2 deletions src/include/non-scalar/band_structure.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable class-methods-use-this */
// eslint-disable-next-line max-classes-per-file
import { math as codeJSMath } from "@exabyte-io/code.js/dist/math";
import { deepClone } from "@exabyte-io/code.js/dist/utils";
import { math as codeJSMath } from "@mat3ra/code/dist/js/math";
import { deepClone } from "@mat3ra/code/dist/js/utils";
import lodash from "lodash";
import { mix } from "mixwith";

Expand Down
4 changes: 2 additions & 2 deletions src/property.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-unused-vars */
import { NamedInMemoryEntity } from "@exabyte-io/code.js/dist/entity";
import { flattenObject } from "@exabyte-io/code.js/dist/utils";
import { NamedInMemoryEntity } from "@mat3ra/code/dist/js/entity";
import { flattenObject } from "@mat3ra/code/dist/js/utils";
import lodash from "lodash";
import _ from "underscore";

Expand Down

0 comments on commit 54b1f17

Please sign in to comment.