-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update README and package.json files, remove some unused comments
- Loading branch information
Showing
5 changed files
with
22 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
# dhis2-app-platform | ||
# dhis2-app-platform | ||
|
||
TODO | ||
|
||
- [x] Working POC | ||
- [ ] Build app component bundles with WebPack (using SplitChunks for shared code) | ||
- [ ] Support simple configuration (`d2.config.js` or `.d2rc`) | ||
- [ ] Support specifying appShell for testing | ||
- [ ] Support automatic clearing of `.d2/shell` when new version installed (use prepublish script?) | ||
- [ ] Support non-js app includes (images, static files, etc.) | ||
- [ ] Reference React from appShell instead of bundling a second local version | ||
- [ ] Support bundle analysis | ||
- [ ] Name bundles based on application name | ||
- [ ] Support plugin entrypoint | ||
- [ ] Pass server URL to application component (or provide server context) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ | |
"name": "example-cra", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"repository": "https://github.com/amcgee/dhis2-app-platform", | ||
"author": "Austin McGee <[email protected]>", | ||
"license": "MIT", | ||
"license": "BSD-3-Clause", | ||
"private": true, | ||
"dependencies": { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "@dhis2/app-shell", | ||
"version": "0.1.0", | ||
"repository": "https://github.com/amcgee/dhis2-app-platform", | ||
"author": "Austin McGee <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"private": true, | ||
"dependencies": { | ||
"@types/jest": "24.0.5", | ||
|