-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: tracking package should not declare exports while v1 (#8314)
* create embroider test app * stash * fix exports * remove spike of compat adapter changes * run tests * fix lint * cleanup ported app
- Loading branch information
Showing
29 changed files
with
1,502 additions
and
57 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
**/dist-experiment/ | ||
**/tmp/ | ||
/packages/-ember-data/docs/ | ||
/packages/tracking/addon/ | ||
|
||
**/DEBUG/ | ||
|
||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]:emberjs/data.git", | ||
"directory": "addons/tracking" | ||
"directory": "packages/tracking" | ||
}, | ||
"homepage": "https://github.com/emberjs/data", | ||
"bugs": "https://github.com/emberjs/data/issues", | ||
|
@@ -24,15 +24,10 @@ | |
"dependencies": { | ||
"ember-cli-babel": "^7.26.11" | ||
}, | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./*": "./dist/*", | ||
"./addon-main.js": "./addon-main.js" | ||
}, | ||
"files": [ | ||
"lib", | ||
"addon-main.js", | ||
"dist" | ||
"dist", | ||
"addon" | ||
], | ||
"scripts": { | ||
"build": "rollup --config && babel ./dist --out-dir addon --plugins=./lib/transform-ext.js", | ||
|
Oops, something went wrong.