File tree Expand file tree Collapse file tree 9 files changed +10997
-5701
lines changed Expand file tree Collapse file tree 9 files changed +10997
-5701
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
40
40
&& npm install -g npm
41
41
42
42
RUN addgroup --system --gid 1001 nextjs && adduser --system --uid 1001 nextjs
43
- RUN npm install --location=global lerna@6.6.1
43
+ RUN npm install --location=global lerna@6.6.2
44
44
COPY ./package.json ./package-lock.json lerna.json ./
45
45
COPY ./packages/core/package.json ./packages/core/
46
46
COPY ./packages/tools/package.json ./packages/tools/
@@ -53,6 +53,7 @@ RUN npm install \
53
53
"@napi-rs/magic-string"
54
54
RUN lerna run --scope @gen3/core build
55
55
RUN lerna run --scope @gen3/frontend build
56
- RUN lerna run --scope @gen3/datacommonsapp build
56
+ RUN lerna run --scope @gen3/toolsff build
57
+ RUN lerna run --scope @gen3/samplecommons build
57
58
ENV PORT=80
58
59
CMD ["npm" , "run" , "start" ]
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gen3-frontend-framework" ,
3
- "version" : " 0.1 .0" ,
4
- "description" : " The Gen3 Gen3 Frontend Framework mono repo for development" ,
3
+ "version" : " 0.6 .0" ,
4
+ "description" : " The Gen3 Frontend Framework mono repo for development" ,
5
5
"private" : true ,
6
6
"workspaces" : [
7
7
" packages/*"
51
51
"eslint-plugin-react-hooks" : " ^4.6.0" ,
52
52
"jest-canvas-mock" : " ^2.4.0" ,
53
53
"jest-environment-jsdom" : " ^29.4.3" ,
54
- "lerna" : " ^6.1.0 " ,
54
+ "lerna" : " ^6.6.2 " ,
55
55
"prettier" : " ^2.7.1" ,
56
56
"rollup-plugin-swc3" : " ^0.10.2" ,
57
57
"rollup-swc-preserve-directives" : " ^0.5.0" ,
Original file line number Diff line number Diff line change
1
+ src /
2
+ tsconfig. *
3
+ setupTests.js
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @gen3/core" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.20.2 " ,
4
4
"author" : " CTDS" ,
5
5
"description" : " Core module for gen3 frontend. Provides an interface for interacting with the gen3 API and a redux store for managing state." ,
6
6
"license" : " Apache-2.0" ,
7
- "main" : " dist/index.js" ,
7
+ "main" : " dist/index.esm. js" ,
8
8
"module" : " dist/index.esm.js" ,
9
9
"unpkg" : " dist/index.umd.js" ,
10
10
"types" : " dist/index.d.ts" ,
55
55
},
56
56
"files" : [
57
57
" dist"
58
- ],
59
- "publishConfig" : {
60
- "registry" : " https://localhost:4873/"
61
- }
58
+ ]
62
59
}
Original file line number Diff line number Diff line change 6
6
"author" : " " ,
7
7
"license" : " Apache-2.0" ,
8
8
"sideEffects" : false ,
9
- "main" : " dist/index.js" ,
9
+ "main" : " dist/index.esm. js" ,
10
10
"module" : " dist/index.esm.js" ,
11
11
"unpkg" : " dist/index.umd.js" ,
12
12
"types" : " dist/index.d.ts" ,
43
43
"@fontsource/montserrat" : " ^4.5.12" ,
44
44
"@fontsource/source-sans-pro" : " ^4.5.11" ,
45
45
"@gen3/core" : " file:../core" ,
46
- "@graphiql/plugin-explorer" : " ^1.0.2 " ,
46
+ "@graphiql/plugin-explorer" : " ^1.0.3 " ,
47
47
"@graphiql/react" : " ^0.20.2" ,
48
48
"@iconify/react" : " ^4.0.1" ,
49
49
"@mantine/core" : " ^6.0.4" ,
91
91
"react-table" : " ^7.8.0" ,
92
92
"recharts" : " ^2.4.3" ,
93
93
"rollup-plugin-sourcemaps" : " ^0.6.3" ,
94
- "sharp" : " ^0.30.7 " ,
94
+ "sharp" : " ^0.33.2 " ,
95
95
"stable-hash" : " ^0.0.3" ,
96
96
"swr" : " ^2.1.5" ,
97
97
"tailwind-styled-components" : " ^2.2.0" ,
150
150
},
151
151
"files" : [
152
152
" dist"
153
- ],
154
- "publishConfig" : {
155
- "registry" : " https://localhost:4873/"
156
- }
153
+ ]
157
154
}
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @gen3/datacommonsapp " ,
3
- "version" : " 0.1.0 " ,
2
+ "name" : " @gen3/samplecommons " ,
3
+ "version" : " 0.20.2 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"lint" : " next lint" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import icons from '../../config/icons/gen3.json';
7
7
import '../styles/globals.css' ;
8
8
import 'react-responsive-carousel/lib/styles/carousel.min.css' ;
9
9
import 'graphiql/graphiql.css' ;
10
- import '../../../frontend/node_modules/ @graphiql/plugin-explorer/dist/style.css' ;
10
+ import '@graphiql/plugin-explorer/dist/style.css' ;
11
11
import '@graphiql/react/dist/style.css' ;
12
12
import { setDRSHostnames } from '@gen3/core' ;
13
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @gen3/toolsff" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.20.2 " ,
4
4
"description" : " tools for processing portal content" ,
5
5
"main" : " index.js" ,
6
6
"type" : " module" ,
36
36
},
37
37
"files" : [
38
38
" dist"
39
- ],
40
- "publishConfig" : {
41
- "registry" : " https://localhost:4873/"
42
- }
39
+ ]
43
40
}
You can’t perform that action at this time.
0 commit comments