Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,19 @@
"en:hide-cards": "DEV_LOCALE=en next -p 9990",
"dev": "rm -rf .next && concurrently \"yarn jp\" \"yarn en\" \"yarn contents:watch\" \"yarn twemoji:watch\"",
"dev:hide-cards": "rm -rf .next && concurrently \"yarn jp:hide-cards\" \"yarn en:hide-cards\" \"yarn contents:watch\" \"yarn twemoji:watch\"",
"contents": "ts-node --project tsconfig.scripts.json ./scripts/generateContentsBundle.ts",
"sitemap": "ts-node --project tsconfig.scripts.json -r tsconfig-paths/register ./scripts/generateSitemap.ts",
"contents:watch": "ts-node --project tsconfig.scripts.json ./scripts/generateContentsBundle.ts watch",
"precompute": "ts-node --project tsconfig.scripts.json -r tsconfig-paths/register ./scripts/precomputeExpressionContainers.ts",
"ts-node": "ts-node --project tsconfig.scripts.json",
"contents": "yarn ts-node ./scripts/generateContentsBundle.ts",
"sitemap": "yarn ts-node ./scripts/generateSitemap.ts",
"contents:watch": "yarn ts-node ./scripts/generateContentsBundle.ts watch",
"precompute": "yarn ts-node ./scripts/precomputeExpressionContainers.ts",
"tsc": "tsc",
"eslint": "eslint --ext .js,.ts,.tsx .",
"eslint:fix": "eslint --ext .js,.ts,.tsx --fix .",
"build:en": "yarn tsc && yarn eslint && PRODUCTION_LOCALE=en yarn sitemap && PRODUCTION_LOCALE=en next build && PRODUCTION_LOCALE=en next export",
"build:jp": "yarn tsc && yarn eslint && PRODUCTION_LOCALE=jp yarn sitemap && PRODUCTION_LOCALE=jp next build && PRODUCTION_LOCALE=jp next export",
"twemoji": "mkdir -p .twemoji && rm -f src/components/Twemoji/* && rm -f .twemoji/* && cp `ts-node --project tsconfig.scripts.json ./scripts/copyUsedEmojis.ts` .twemoji && svgr --ext tsx --no-svgo --filename-case kebab --no-dimensions -d src/components/Twemoji .twemoji && eslint --ext .tsx --fix src/components/Twemoji && yarn twemoji:bundle",
"twemoji:bundle": "ts-node --project tsconfig.scripts.json ./scripts/generateEmojisBundle.ts",
"twemoji:watch": "ts-node --project tsconfig.scripts.json ./scripts/generateEmojisBundle.ts watch",
"twemoji": "mkdir -p .twemoji && rm -f src/components/Twemoji/* && rm -f .twemoji/* && cp `yarn ts-node ./scripts/copyUsedEmojis.ts` .twemoji && svgr --ext tsx --no-svgo --filename-case kebab --no-dimensions -d src/components/Twemoji .twemoji && eslint --ext .tsx --fix src/components/Twemoji && yarn twemoji:bundle",
"twemoji:bundle": "yarn ts-node ./scripts/generateEmojisBundle.ts",
"twemoji:watch": "yarn ts-node ./scripts/generateEmojisBundle.ts watch",
"type-check": "tsc -w",
"test": "jest"
},
Expand Down Expand Up @@ -74,7 +75,6 @@
"sitemap": "^2.2.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.1"
}
}
2 changes: 1 addition & 1 deletion scripts/generateContentsBundle.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chokidar from 'chokidar'
import glob from 'glob'
import fs from 'fs'
import prettierFormat from 'scripts/lib/prettierFormat'
import prettierFormat from './lib/prettierFormat'

const regenerate = (path?: string) => {
glob(
Expand Down
2 changes: 1 addition & 1 deletion scripts/generateEmojisBundle.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chokidar from 'chokidar'
import glob from 'glob'
import fs from 'fs'
import prettierFormat from 'scripts/lib/prettierFormat'
import prettierFormat from './lib/prettierFormat'
import { exec } from 'child_process'

const regenerate = () => {
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/buildExpressionContainers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerConfig } from 'scripts/lib/buildExpressionRunnerConfigFromShorthand'
import { ExpressionRunnerConfig } from './buildExpressionRunnerConfigFromShorthand'
import { isContainerWithState } from 'src/lib/expressionContainerGuards'
import stepExpressionContainer from 'src/lib/stepExpressionContainer'
import {
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/buildExpressionRunnerConfigFromShorthand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
expressionRunnerSingleStepConfigDefault,
isExpressionRunnerSimpleConfig,
isExpressionRunnerPlayButtonOnlyConfig
} from 'scripts/lib/expressionRunnerShorthandConfig'
} from './expressionRunnerShorthandConfig'
import { ExpressionContainer } from 'src/types/ExpressionContainerTypes'
import { allMaxWidths } from 'src/lib/theme/maxWidths'
import {
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/aaov.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'singleStep',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/ablz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/aeyv.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/aezk.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/ahsd.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/aimh.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/ainx.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/angp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/awxz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/badn.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bcae.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bcgc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bdlj.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bgfl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/blre.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bmms.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bmnc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bozr.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bpsz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bpwl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bpza.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/brrh.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bxdf.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/bxfv.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/ccon.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cfms.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cgpd.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cnef.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cnoq.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cpbj.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cpkp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cqpa.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/ctyl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/cvtc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/davn.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dcfi.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dhdk.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/diis.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dkbt.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dkiy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dmwy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dnvw.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dpar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dpst.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dqey.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dqkc.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dret.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/drvu.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dtzu.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dvrw.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dwnj.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'playButtonOnly',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dxum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dymt.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/dyov.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/runnerConfigs/eavp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExpressionRunnerShorthandConfig } from 'scripts/lib/expressionRunnerShorthandConfig'
import { ExpressionRunnerShorthandConfig } from '../expressionRunnerShorthandConfig'

const config: ExpressionRunnerShorthandConfig = {
runner: 'simple',
Expand Down
Loading