Skip to content

Commit

Permalink
sort imports by module name in TypeScript too, phetsims/chipper#1462
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed Sep 23, 2024
1 parent 2924dd7 commit e8e1022
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion adapted-from-phet/js/Brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import brand from '../../js/brand.js';
import TBrand from '../../js/TBrand.js';
import logoOnWhite_png from '../images/logoOnWhite_png.js';
import logo_png from '../images/logo_png.js';
import logoOnWhite_png from '../images/logoOnWhite_png.js';

const Brand: TBrand = {

Expand Down
2 changes: 1 addition & 1 deletion phet-io/js/Brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

import brand from '../../js/brand.js';
import getLinks from '../../js/getLinks.js';
import TBrand from '../../js/TBrand.js';
import logo_png from '../images/logo_png.js';
import logoOnWhite_png from '../images/logoOnWhite_png.js';
import TBrand from '../../js/TBrand.js';

// Documentation for all properties is available in brand/adapted-from-phet/js/Brand.js
const Brand: TBrand = {
Expand Down
4 changes: 2 additions & 2 deletions phet/js/Brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

import brand from '../../js/brand.js';
import getLinks from '../../js/getLinks.js';
import logoOnWhite_png from '../images/logoOnWhite_png.js';
import logo_png from '../images/logo_png.js';
import TBrand from '../../js/TBrand.js';
import logo_png from '../images/logo_png.js';
import logoOnWhite_png from '../images/logoOnWhite_png.js';

// Documentation for all properties is available in brand/adapted-from-phet/js/Brand.js
const Brand: TBrand = {
Expand Down

0 comments on commit e8e1022

Please sign in to comment.