-
-
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.
feat: ember specific data utils (#9260)
* feat: ember data primitives * more fixes * maybe * update settings * all the things * test fixes etc * fixes * more updates * fixup * fix workflow * lint fixes * add brew back * all the lint * fix fastboot tests * more fixes? * updates * fix all the things * cleanup lint * bump timeout * cleanup * more tests and gts fixes * more tests * all the, nice things * cleanup * more updates * fixes
- Loading branch information
Showing
191 changed files
with
8,556 additions
and
4,063 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
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,12 +1,28 @@ | ||
module.exports = { | ||
trailingComma: 'es5', | ||
printWidth: 120, | ||
plugins: ['prettier-plugin-ember-template-tag'], | ||
overrides: [ | ||
{ | ||
files: '*.{js,ts,cjs,cts,mjs,mts}', | ||
options: { | ||
singleQuote: true, | ||
}, | ||
}, | ||
{ | ||
files: ['*.hbs'], | ||
options: { | ||
singleQuote: false, | ||
}, | ||
}, | ||
{ | ||
files: ['*.gjs', '*.gts'], | ||
options: { | ||
parser: 'ember-template-tag', | ||
singleQuote: true, | ||
templateSingleQuote: false, | ||
trailingComma: 'es5', | ||
}, | ||
}, | ||
], | ||
}; |
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,3 +1,3 @@ | ||
export function cached(target: object, key: string, desc: PropertyDescriptor): void; | ||
|
||
export function tracked(target: object, key: string): void; | ||
export function tracked(target: object, key: string, desc?: object): void; |
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 |
---|---|---|
|
@@ -38,8 +38,14 @@ | |
"test-external:ember-data-relationship-tracker": "node ./scripts/test-external-partner-project.js ember-data-relationship-tracker https://github.com/ef4/ember-data-relationship-tracker.git" | ||
}, | ||
"devDependencies": { | ||
"bun-types": "^1.0.25", | ||
"@babel/core": "^7.24.3", | ||
"@glint/core": "^1.3.0", | ||
"@glint/environment-ember-loose": "^1.3.0", | ||
"@glint/environment-ember-template-imports": "^1.3.0", | ||
"@glint/template": "^1.4.0", | ||
"@glimmer/component": "^1.1.2", | ||
"@types/semver": "^7.5.6", | ||
"bun-types": "^1.0.25", | ||
"chalk": "^4.1.2", | ||
"co": "^4.6.0", | ||
"command-line-args": "^5.2.1", | ||
|
@@ -51,9 +57,11 @@ | |
"lerna-changelog": "^2.2.0", | ||
"pnpm-sync-dependencies-meta-injected": "0.0.10", | ||
"prettier": "^3.1.1", | ||
"prettier-plugin-ember-template-tag": "^2.0.0", | ||
"rimraf": "^5.0.5", | ||
"semver": "^7.5.4", | ||
"silent-error": "^1.1.1", | ||
"typescript": "^5.4.3", | ||
"url": "^0.11.3", | ||
"yuidocjs": "^0.10.2", | ||
"zlib": "1.0.5" | ||
|
@@ -65,13 +73,13 @@ | |
"node": ">= 18.19.1", | ||
"yarn": "use pnpm", | ||
"npm": "use pnpm", | ||
"pnpm": "8.6.0" | ||
"pnpm": "8.15.5" | ||
}, | ||
"volta": { | ||
"node": "18.19.1", | ||
"pnpm": "8.6.0" | ||
"pnpm": "8.15.5" | ||
}, | ||
"packageManager": "pnpm@8.6.0", | ||
"packageManager": "pnpm@8.15.5", | ||
"changelog": { | ||
"labels": { | ||
":label: breaking": ":boom: Breaking Change", | ||
|
@@ -117,8 +125,9 @@ | |
"@embroider/macros": "^1.13.4", | ||
"broccoli-funnel": "^3.0.8", | ||
"broccoli-merge-trees": "^4.2.0", | ||
"@glimmer/validator": "^0.84.3", | ||
"ember-cli-babel": "^8.1.0", | ||
"@glimmer/validator": "^0.89.0", | ||
"@glint/template": "^1.4.0", | ||
"ember-cli-babel": "^8.2.0", | ||
"ember-cli-htmlbars": "^6.3.0", | ||
"ember-cli-typescript": "^5.2.1", | ||
"@ember/string": "3.1.1", | ||
|
@@ -139,7 +148,8 @@ | |
}, | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]" | ||
"[email protected]": "patches/[email protected]", | ||
"@ember/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.