-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from alfredsgenkins/master
Fixed issues introduced
- Loading branch information
Showing
9 changed files
with
20 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Following issues were discovered in this repository | ||
|
||
1. Folder `plugins` may only contain plugins, which export an object, components, anything else can not be located here. Action: **I will try adding more detailed message about that!**. | ||
2. Extensions can not enable themself - the enabled extension resoltion is recurive - from your application root we scan all enabled extensions up, so it is not reccomended to enable extension in the same extension. Action - **I will try adding an warnign about that** | ||
3. For some reason, potentially for some babel-specific reason the following code: `import React from "react";` and then `React.Component` did not function correctly. Use the `import { Component } from "react";` instead. This is a bug, but I am not sure if I will be able to address it soon enough. | ||
4. Finally and most importantly, the local modules can only by symlinked if their version in `package.json` starts with `link:` and you are using `yarn` or `file:` but then manual symlinking is needed (`yarn link` or `npm link`). |
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
File renamed without changes.
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,9 +1,9 @@ | ||
import HelloWorldComponent from "./components/HelloWorldComponent"; | ||
import HelloWorldComponent from "../components/HelloWorldComponent"; | ||
|
||
export default { | ||
"scandi-test/WelcomePageComponent": { | ||
"member-function": { | ||
renderHello: () => "Foobar", | ||
renderHello: () => <HelloWorldComponent />, | ||
}, | ||
}, | ||
}; |
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 @@ | ||
[{"/Users/jherr/tmp/scandi-test/scandi-test/src/index.js":"1","/Users/jherr/tmp/scandi-test/scandi-test/src/reportWebVitals.js":"2","/Users/jherr/tmp/scandi-test/scandi-test/src/WelcomePageComponent.js":"3","/Users/jherr/tmp/scandi-test/scandi-test/src/App.js":"4"},{"size":500,"mtime":1612215764585,"results":"5","hashOfConfig":"6"},{"size":362,"mtime":1612215764586,"results":"7","hashOfConfig":"6"},{"size":420,"mtime":1612217043178,"results":"8","hashOfConfig":"6"},{"size":184,"mtime":1612216611092,"results":"9","hashOfConfig":"6"},{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1wafsoe",{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/jherr/tmp/scandi-test/scandi-test/src/index.js",[],"/Users/jherr/tmp/scandi-test/scandi-test/src/reportWebVitals.js",[],"/Users/jherr/tmp/scandi-test/scandi-test/src/WelcomePageComponent.js",[],"/Users/jherr/tmp/scandi-test/scandi-test/src/App.js",[]] | ||
[{"/home/scandiweb/Projects/scandi-test/scandi-test/src/index.js":"1","/home/scandiweb/Projects/scandi-test/scandi-test/src/reportWebVitals.js":"2","/home/scandiweb/Projects/scandi-test/scandi-test/src/WelcomePageComponent.js":"3","/home/scandiweb/Projects/scandi-test/scandi-test/src/App.js":"4"},{"size":500,"mtime":1612267396923,"results":"5","hashOfConfig":"6"},{"size":362,"mtime":1612267396923,"results":"7","hashOfConfig":"6"},{"size":422,"mtime":1612267505084,"results":"8","hashOfConfig":"6"},{"size":184,"mtime":1612267396923,"results":"9","hashOfConfig":"6"},{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"9x3575",{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/scandiweb/Projects/scandi-test/scandi-test/src/index.js",[],"/home/scandiweb/Projects/scandi-test/scandi-test/src/reportWebVitals.js",[],"/home/scandiweb/Projects/scandi-test/scandi-test/src/WelcomePageComponent.js",[],"/home/scandiweb/Projects/scandi-test/scandi-test/src/App.js",[]] |
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|