Skip to content

Commit

Permalink
add missing @author annotations, #1414
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jan 18, 2024
1 parent e5959f4 commit 890e6be
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// Copyright 2023, University of Colorado Boulder

/**
* @author Same Reid (PhET Interactive Simulations)
*/

module.exports = {
create( context ) {
return {
Expand Down
3 changes: 3 additions & 0 deletions js/data/updateLocaleInfo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Copyright 2024, University of Colorado Boulder

/**
* @author Matt Pennington (PhET Interactive Simulations)
*/

const child_process = require( 'child_process' );
const fs = require( 'fs' );
Expand Down
5 changes: 5 additions & 0 deletions js/phet-io/phetioCompareAPISets.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright 2021-2023, University of Colorado Boulder

/**
* @author Same Reid (PhET Interactive Simulations)
*/

const fs = require( 'fs' );
const phetioCompareAPIs = require( './phetioCompareAPIs' );
const _ = require( 'lodash' );
Expand Down
4 changes: 4 additions & 0 deletions js/scripts/quackage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// Copyright 2022, University of Colorado Boulder

/**
* @author Same Reid (PhET Interactive Simulations)
*/

const fs = require( 'fs' );
const path = require( 'path' );

Expand Down
5 changes: 5 additions & 0 deletions js/scripts/scenery-imports.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright 2021-2022, University of Colorado Boulder

/**
* @author Same Reid (PhET Interactive Simulations)
*/

const fs = require( 'fs' );

const keyLines = fs.readFileSync( '../scenery/js/imports.ts', 'utf-8' ).split( '\n' );
Expand Down
7 changes: 5 additions & 2 deletions js/sim-tests/qunitStart.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
// Copyright 2020-2021, University of Colorado Boulder

import Tandem from '../../../tandem/js/Tandem.js';

/**
* Start Qunit while supporting PhET-iO brand
*
* @author Michael Kauzmann (PhET Interactive Simulations)
*/

import Tandem from '../../../tandem/js/Tandem.js';

const qunitStart = () => {

const start = () => {
Expand Down

0 comments on commit 890e6be

Please sign in to comment.