diff --git a/js/LocalizedString.ts b/js/LocalizedString.ts index 4d4f2637..9e858fd7 100644 --- a/js/LocalizedString.ts +++ b/js/LocalizedString.ts @@ -7,13 +7,13 @@ */ import TinyProperty from '../../axon/js/TinyProperty.js'; +import TProperty from '../../axon/js/TProperty.js'; import localeProperty, { Locale } from '../../joist/js/i18n/localeProperty.js'; +import arrayRemove from '../../phet-core/js/arrayRemove.js'; import Tandem from '../../tandem/js/Tandem.js'; +import { PhetioID } from '../../tandem/js/TandemConstants.js'; import chipper from './chipper.js'; -import TProperty from '../../axon/js/TProperty.js'; import { localizedStrings } from './getStringModule.js'; -import arrayRemove from '../../phet-core/js/arrayRemove.js'; -import { PhetioID } from '../../tandem/js/TandemConstants.js'; import LocalizedStringProperty from './LocalizedStringProperty.js'; // constants diff --git a/js/LocalizedStringProperty.ts b/js/LocalizedStringProperty.ts index c8d42d88..de640b27 100644 --- a/js/LocalizedStringProperty.ts +++ b/js/LocalizedStringProperty.ts @@ -9,9 +9,9 @@ import DynamicProperty from '../../axon/js/DynamicProperty.js'; import localeProperty, { Locale } from '../../joist/js/i18n/localeProperty.js'; import Tandem from '../../tandem/js/Tandem.js'; +import TandemConstants from '../../tandem/js/TandemConstants.js'; import StringIO from '../../tandem/js/types/StringIO.js'; import chipper from './chipper.js'; -import TandemConstants from '../../tandem/js/TandemConstants.js'; import LocalizedString from './LocalizedString.js'; class LocalizedStringProperty extends DynamicProperty { diff --git a/js/getStringModule.ts b/js/getStringModule.ts index 3250a583..3af9b2df 100644 --- a/js/getStringModule.ts +++ b/js/getStringModule.ts @@ -13,15 +13,15 @@ * @author Jonathan Olson */ +import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js'; +import { Locale } from '../../joist/js/i18n/localeProperty.js'; +import CouldNotYetDeserializeError from '../../tandem/js/CouldNotYetDeserializeError.js'; import PhetioObject from '../../tandem/js/PhetioObject.js'; import Tandem from '../../tandem/js/Tandem.js'; -import CouldNotYetDeserializeError from '../../tandem/js/CouldNotYetDeserializeError.js'; +import { PhetioID } from '../../tandem/js/TandemConstants.js'; import IOType from '../../tandem/js/types/IOType.js'; import ObjectLiteralIO from '../../tandem/js/types/ObjectLiteralIO.js'; import LocalizedString, { LocalizedStringStateDelta, StringsStateStateObject } from './LocalizedString.js'; -import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js'; -import { Locale } from '../../joist/js/i18n/localeProperty.js'; -import { PhetioID } from '../../tandem/js/TandemConstants.js'; // constants const FALLBACK_LOCALE = 'en'; diff --git a/js/grunt/modulify.js b/js/grunt/modulify.js index 86bbd37c..71e362ab 100644 --- a/js/grunt/modulify.js +++ b/js/grunt/modulify.js @@ -402,6 +402,7 @@ const createImageModule = async ( repo, supportedRegionsAndCultures ) => { * Auto-generated from modulify, DO NOT manually modify. */ /* eslint-disable */ +/* @formatter:off */ import LocalizedImageProperty from '../../joist/js/i18n/LocalizedImageProperty.js'; import ${namespace} from './${namespace}.js'; ${imageFiles.map( imageFile => `import ${getImportName( imageFile )} from '../${imageFile.replace( '.ts', '.js' )}';` ).join( '\n' )} @@ -445,6 +446,7 @@ const createStringModule = async repo => { * Auto-generated from modulify, DO NOT manually modify. */ /* eslint-disable */ +/* @formatter:off */ import getStringModule from '../../chipper/js/getStringModule.js'; import type LocalizedStringProperty from '../../chipper/js/LocalizedStringProperty.js'; import ${namespace} from './${namespace}.js';