Skip to content

Commit a6900c2

Browse files
Merge pull request #76 from Exabyte-io/update/made-code-esse
chore: update made-code-esse references
2 parents c7f07c4 + 70e12a3 commit a6900c2

20 files changed

+271
-121
lines changed

.github/workflows/cicd.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
if: github.repository != 'Exabyte-io/template-definitions'
3737
strategy:
3838
matrix:
39-
node-version: [14.x, 16.x, 18.x]
39+
node-version:
40+
- 14.x
41+
- 20.x
4042

4143
steps:
4244
- name: Checkout this repository
@@ -73,7 +75,6 @@ jobs:
7375
- name: Publish JS release
7476
uses: ./actions/js/publish
7577
with:
76-
node-version: 14
7778
npm-token: ${{ secrets.NPM_TOKEN }}
7879
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
7980

package-lock.json

Lines changed: 231 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@
4646
"underscore.string": "^3.3.4"
4747
},
4848
"devDependencies": {
49-
"@exabyte-io/ade.js": "2024.3.23-0",
50-
"@exabyte-io/application-flavors.js": "2024.3.21-0",
51-
"@exabyte-io/code.js": "2024.2.29-0",
52-
"@mat3ra/esse": "2024.3.20-0",
49+
"@exabyte-io/ade.js": "2024.3.26-0",
50+
"@exabyte-io/application-flavors.js": "2024.3.26-0",
5351
"@exabyte-io/eslint-config": "^2022.11.17-0",
54-
"@exabyte-io/ide.js": "2022.7.28-1",
55-
"@mat3ra/made": "2024.3.23-1",
56-
"@exabyte-io/mode.js": "2023.11.22-0",
52+
"@exabyte-io/ide.js": "2024.3.26-0",
53+
"@exabyte-io/mode.js": "2024.3.26-0",
54+
"@mat3ra/code": "2024.3.25-3",
55+
"@mat3ra/esse": "2024.3.25-6",
56+
"@mat3ra/made": "2024.3.26-0",
5757
"chai": "^4.3.4",
5858
"eslint": "7.32.0",
5959
"eslint-config-airbnb": "19.0.2",
@@ -72,15 +72,15 @@
7272
"prettier": "^2.7.1"
7373
},
7474
"peerDependencies": {
75-
"@mat3ra/made": "*",
7675
"@exabyte-io/ade.js": "*",
7776
"@exabyte-io/ide.js": "*",
7877
"@exabyte-io/mode.js": "*",
79-
"@exabyte-io/code.js": "*",
80-
"@mat3ra/esse": "*"
78+
"@mat3ra/code": "*",
79+
"@mat3ra/esse": "*",
80+
"@mat3ra/made": "*"
8181
},
8282
"engines": {
83-
"node": ">=12.0.0"
83+
"node": ">=14.0.0"
8484
},
8585
"lint-staged": {
8686
"*.js": "eslint --cache --fix",

src/context/providers/BoundaryConditionsFormDataProvider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@exabyte-io/code.js/dist/context";
2-
import { deepClone } from "@exabyte-io/code.js/dist/utils";
1+
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@mat3ra/code/dist/js/context";
2+
import { deepClone } from "@mat3ra/code/dist/js/utils";
33
import { Made } from "@mat3ra/made";
44
import { mix } from "mixwith";
55

src/context/providers/CollinearMagnetizationContextProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@exabyte-io/code.js/dist/context";
1+
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@mat3ra/code/dist/js/context";
22
import { Made } from "@mat3ra/made";
33
import { mix } from "mixwith";
44

src/context/providers/HubbardUContextProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@exabyte-io/code.js/dist/context";
1+
import { JSONSchemaFormDataProvider, MaterialContextMixin } from "@mat3ra/code/dist/js/context";
22
import { Made } from "@mat3ra/made";
33
import { mix } from "mixwith";
44

src/context/providers/IonDynamicsContextProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { JSONSchemaFormDataProvider } from "@exabyte-io/code.js/dist/context";
1+
import { JSONSchemaFormDataProvider } from "@mat3ra/code/dist/js/context";
22

33
const defaultMDConfig = {
44
numberOfSteps: 100,

src/context/providers/MLSettingsContextProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Application } from "@exabyte-io/ade.js";
2-
import { ApplicationContextMixin, ContextProvider } from "@exabyte-io/code.js/dist/context";
2+
import { ApplicationContextMixin, ContextProvider } from "@mat3ra/code/dist/js/context";
33
import { mix } from "mixwith";
44

55
export class MLSettingsContextProvider extends mix(ContextProvider).with(ApplicationContextMixin) {

src/context/providers/MLTrainTestSplitContextProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Application } from "@exabyte-io/ade.js";
2-
import { ApplicationContextMixin, ContextProvider } from "@exabyte-io/code.js/dist/context";
2+
import { ApplicationContextMixin, ContextProvider } from "@mat3ra/code/dist/js/context";
33
import { mix } from "mixwith";
44

55
export class MLTrainTestSplitContextProvider extends mix(ContextProvider).with(

src/context/providers/NEBFormDataProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { JSONSchemaFormDataProvider } from "@exabyte-io/code.js/dist/context";
1+
import { JSONSchemaFormDataProvider } from "@mat3ra/code/dist/js/context";
22

33
export class NEBFormDataProvider extends JSONSchemaFormDataProvider {
44
// eslint-disable-next-line class-methods-use-this

0 commit comments

Comments
 (0)