Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: switching to only one package file #561

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions package.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
"build-jsdraw-wrapper": "ng build --prod jsdraw-wrapper && cd dist/jsdraw-wrapper && npm pack",
"build-ketcher-wrapper": "ng build --prod ketcher-wrapper && cd dist/ketcher-wrapper && npm pack",
"build-libraries": "npm run build-file-select && npm run build-jsdraw-wrapper && npm run build-ketcher-wrapper",
"build-server": "ng run gsrs-client:server && npm run webpack:server",
"build-server": "ng run gsrs-client:server",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"start:fda:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:fda:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:fda:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:fda:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=gsrs.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.prod --sourceMap=true",
"build:fda:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:fda:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"test": "ng test",
"test": "ng test",
"lint": "ng lint",
"tslint": "tslint",
"e2e": "ng e2e",
Expand Down Expand Up @@ -57,7 +57,7 @@
"helmet": "3.21.2",
"lodash": "4.17.21",
"lucene-query-parser": "1.2.0",
"moment": "2.29.2",
"moment": "2.29.4",
"ng-multiselect-dropdown": "0.2.10",
"ngx-json-viewer": "2.4.0",
"ngx-moment": "3.5.0",
Expand All @@ -68,9 +68,9 @@
"util": "0.12.4",
"web-animations-js": "2.3.2",
"zone.js": "0.11.4",
"z-schema": "5.0.4",
"jexl": "2.3.0",
"xlsx": "0.18.5"
"xlsx": "^0.18.5",
"z-schema": "4.2.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.2.1",
Expand Down Expand Up @@ -107,7 +107,7 @@
"karma-jasmine-html-reporter": "1.7.0",
"mkdirp": "1.0.4",
"ng-packagr": "13.2.1",
"node-sass": "7.0.1",
"sass": "1.80.6",
"protractor": "7.0.0",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
Expand Down
33 changes: 15 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@
"build-jsdraw-wrapper": "ng build --prod jsdraw-wrapper && cd dist/jsdraw-wrapper && npm pack",
"build-ketcher-wrapper": "ng build --prod ketcher-wrapper && cd dist/ketcher-wrapper && npm pack",
"build-libraries": "npm run build-file-select && npm run build-jsdraw-wrapper && npm run build-ketcher-wrapper",
"build-server": "ng run gsrs-client:server && npm run webpack:server",
"build-server": "ng run gsrs-client:server",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"start:fda:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:fda:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:fda:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:fda:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=gsrs.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.prod --sourceMap=true",
"build:fda:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:fda:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",

"test": "ng test",
"lint": "ng lint",
"tslint": "tslint",
Expand All @@ -48,7 +49,7 @@
"@angular/router": "13.2.1",
"@nguniversal/express-engine": "13.0.2",
"@types/hammerjs": "2.0.36",
"@types/ws": "^8.5.4",
"@types/node": "18.15.3",
"classlist.js": "1.1.20150312",
"compression": "1.7.3",
"core-js": "2.5.4",
Expand All @@ -60,9 +61,9 @@
"helmet": "3.21.2",
"html-to-image": "^1.11.11",
"jexl": "2.3.0",
"jsdraw-wrapper": "file:dist/jsdraw-wrapper/jsdraw-wrapper-0.0.1.tgz",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"jsdraw-wrapper": "file:dist/jsdraw-wrapper/jsdraw-wrapper-0.0.1.tgz",
"ketcher-wrapper": "file:dist/ketcher-wrapper/ketcher-wrapper-0.0.1.tgz",
"lodash": "4.17.21",
"lucene-query-parser": "1.2.0",
Expand All @@ -77,14 +78,12 @@
"ts-loader": "4.5.0",
"util": "0.12.4",
"web-animations-js": "2.3.2",
"webpack": "^5.74.0",
"webpack-sources": "^3.2.3",
"xlsx": "^0.18.5",
"z-schema": "4.2.2",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.11",
"@angular-devkit/build-angular": "13.2.1",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
Expand All @@ -97,10 +96,9 @@
"@types/jasmine": "3.10.3",
"@types/jasminewd2": "2.0.10",
"@types/lodash": "4.14.178",
"@types/node": "17.0.16",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"cheerio": "^1.0.0-rc.2",
"cheerio": "1.0.0-rc.2",
"codelyzer": "6.0.2",
"cpx-fixed": "1.6.0",
"eslint": "8.8.0",
Expand All @@ -111,22 +109,21 @@
"husky": "7.0.4",
"jasmine-core": "4.0.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma": "6.3.15",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"mkdirp": "1.0.4",
"ng-packagr": "13.2.1",
"node-sass": "7.0.1",
"protractor": "7.0.0",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
"sass": "1.80.6",
"ts-node": "10.5.0",
"tslib": "2.3.1",
"tslint": "5.20.1",
"typescript": "4.5.5",
"webpack-cli": "4.9.2"
"typescript": "4.5.5"
},
"husky": {
"hooks": {
Expand Down
37 changes: 18 additions & 19 deletions package.real.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
"build-jsdraw-wrapper": "ng build --prod jsdraw-wrapper && cd dist/jsdraw-wrapper && npm pack",
"build-ketcher-wrapper": "ng build --prod ketcher-wrapper && cd dist/ketcher-wrapper && npm pack",
"build-libraries": "npm run build-file-select && npm run build-jsdraw-wrapper && npm run build-ketcher-wrapper",
"build-server": "ng run gsrs-client:server && npm run webpack:server",
"build-server": "ng run gsrs-client:server",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"start:fda:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.dev --sourceMap=true",
"start:fda:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=fda.local",
"start:fda:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.pre-prod --sourceMap=true",
"start:fda:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=fda.prod --sourceMap=true",
"start:gsrs:dev": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.dev --sourceMap=true",
"start:gsrs:local": "npm run build-libraries && npm run process-dojo && ng serve --configuration=gsrs.local",
"start:gsrs:pre-prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.pre-prod --sourceMap=true",
"start:gsrs:prod": "npm run build-libraries && npm run process-dojo && ng serve --aot=true --configuration=gsrs.prod --sourceMap=true",
"build:fda:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=fda.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:fda:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/ui/ --configuration=fda.prod && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:pre-prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.pre-prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"build:gsrs:prod": "npm run build-libraries && npm run clear-libs-src && ng build --base-href=/ginas/app/beta/ --aot=true --configuration=gsrs.prod --sourceMap=true && node process-index.js && cd lib && extract-zip dojo-custom-jsdraw.zip && cd .. && npm run copy-libs-dist && npm run build-server",
"test": "ng test",
"test": "ng test",
"lint": "ng lint",
"tslint": "tslint",
"e2e": "ng e2e",
Expand All @@ -48,6 +48,7 @@
"@angular/router": "13.2.1",
"@nguniversal/express-engine": "13.0.2",
"@types/hammerjs": "2.0.36",
"@types/node": "18.15.3",
"classlist.js": "1.1.20150312",
"compression": "1.7.3",
"core-js": "2.5.4",
Expand All @@ -58,27 +59,27 @@
"hammerjs": "2.0.8",
"helmet": "3.21.2",
"html-to-image": "^1.11.11",
"jsdraw-wrapper": "file:dist/jsdraw-wrapper/jsdraw-wrapper-0.0.1.tgz",
"ketcher-wrapper": "file:dist/ketcher-wrapper/ketcher-wrapper-0.0.1.tgz",
"jexl": "2.3.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"jsdraw-wrapper": "file:dist/jsdraw-wrapper/jsdraw-wrapper-0.0.1.tgz",
"ketcher-wrapper": "file:dist/ketcher-wrapper/ketcher-wrapper-0.0.1.tgz",
"lodash": "4.17.21",
"lucene-query-parser": "1.2.0",
"moment": "2.29.2",
"moment": "2.29.4",
"ng-multiselect-dropdown": "0.2.10",
"ngx-json-viewer": "2.4.0",
"ngx-moment": "3.5.0",
"ngx-schema-form": "2.7.0",
"primeng": "^13.2.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.4",
"ts-loader": "4.5.0",
"util": "0.12.4",
"web-animations-js": "2.3.2",
"zone.js": "0.11.4",
"xlsx": "^0.18.5",
"z-schema": "4.2.2",
"jexl": "2.3.0",
"ngx-schema-form": "2.7.0",
"xlsx": "0.18.5"
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.2.1",
Expand All @@ -94,7 +95,6 @@
"@types/jasmine": "3.10.3",
"@types/jasminewd2": "2.0.10",
"@types/lodash": "4.14.178",
"@types/node": "17.0.16",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"cheerio": "1.0.0-rc.2",
Expand All @@ -115,15 +115,14 @@
"karma-jasmine-html-reporter": "1.7.0",
"mkdirp": "1.0.4",
"ng-packagr": "13.2.1",
"node-sass": "7.0.1",
"protractor": "7.0.0",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
"sass": "1.80.6",
"ts-node": "10.5.0",
"tslib": "2.3.1",
"tslint": "5.20.1",
"typescript": "4.5.5",
"webpack-cli": "4.9.2"
"typescript": "4.5.5"
},
"husky": {
"hooks": {
Expand Down
17 changes: 3 additions & 14 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,14 @@ You'll have to run the following commands the first time you work on the applica
## Run Application for Specific Environment

- Go the the package.json file and look at the scripts property to see what availabe commands exist
- The commands to run during development begin with "start"
- Identify the environment you want to run, open your favorite command line tool and run the script starting with "npm run"
- So to run the fda local environment, you would run `npm run start:fda:local`
- So to run a local environment, you would run `npm run start:fda:local`
- After a few seconds of compiling the application, you're ready to view your application
- Open your browser and navigate to http://localhost:4200

# Development tools
# Build the Application for Deployment
- To create a build for deployment to a back-end instance, local environment, you would run the command `npm run build:fda:prod`

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).

## Further help

Expand Down
Loading