-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Updated dependencies * chore: Removed stylelint-no-unsupported-browser-features * chore: Updated configurations * chore: Replaced staticComponents, staticHelpers, and staticModifiers (deprecated) with staticInvokables * chore: Replaced single quotes with double to support Windows * chore: Fixed lint errors * chore: Added lockfile * chore: Updated copyright year * chore: Added changeset --------- Co-authored-by: ijlee2 <ijlee2@users.noreply.github.com>
- Loading branch information
Showing
115 changed files
with
2,271 additions
and
2,386 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,13 @@ | ||
--- | ||
"ember-codemod-remove-ember-css-modules": patch | ||
"my-app-with-ember-css-modules": patch | ||
"embroider-css-modules": patch | ||
"test-app-for-embroider-css-modules": patch | ||
"type-css-modules": patch | ||
"test-app-for-my-v2-addon": patch | ||
"my-v1-addon": patch | ||
"my-v2-addon": patch | ||
"my-app": patch | ||
--- | ||
|
||
Updated 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,5 @@ | ||
'use strict'; | ||
|
||
const { browsers } = require('./config/targets'); | ||
|
||
module.exports = { | ||
extends: ['@shared-configs/stylelint'], | ||
plugins: ['stylelint-no-unsupported-browser-features'], | ||
rules: { | ||
'plugin/no-unsupported-browser-features': [ | ||
true, | ||
{ | ||
browsers, | ||
ignore: [ | ||
// grid-template-columns falsely identified as multicolumn | ||
'multicolumn', | ||
], | ||
}, | ||
], | ||
}, | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,28 @@ | ||
// Types for compiled templates | ||
declare module 'my-app-with-ember-css-modules/templates/*' { | ||
import type { TemplateFactory } from 'ember-cli-htmlbars'; | ||
import '@glint/environment-ember-loose'; | ||
import '@glint/environment-ember-template-imports'; | ||
|
||
const tmpl: TemplateFactory; | ||
export default tmpl; | ||
import type { HelperLike } from '@glint/template'; | ||
import type EmberPageTitleRegistry from 'ember-page-title/template-registry'; | ||
import type EmbroiderCssModulesRegistry from 'embroider-css-modules/template-registry'; | ||
import type MyV2AddonRegistry from 'my-v2-addon/template-registry'; | ||
|
||
type LocalClassHelper = HelperLike<{ | ||
Args: { | ||
Named: { | ||
from?: string; | ||
}; | ||
Positional: [localClassNames: string]; | ||
}; | ||
Return: string; | ||
}>; | ||
|
||
declare module '@glint/environment-ember-loose/registry' { | ||
export default interface Registry | ||
extends EmberPageTitleRegistry, | ||
EmbroiderCssModulesRegistry, | ||
MyV2AddonRegistry { | ||
// Add any registry entries from other addons here that your addon itself uses (in non-strict mode templates) | ||
// See https://typed-ember.gitbook.io/glint/using-glint/ember/using-addons | ||
'local-class': LocalClassHelper; | ||
} | ||
} |
Oops, something went wrong.