Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"release:major": "np major",
"test": "run-s test:*",
"test:lint": "run-p test:lint:*",
"test:lint:eslint": "eslint --ext ts src tests",
"test:lint:eslint": "eslint --ext ts src devtools tests",
"test:lint:tsc": "tsc",
"test:unit": "jest --coverage",
"watch": "tsc --watch"
Expand Down
18 changes: 9 additions & 9 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Range, StatsObject, CountersData } from './types'
import TimelineLoader from './loader'
import { calcFPS } from './utils'
import Track, { TrackType } from './timelineModel/track'
import TimelineUIUtils from './timelineModel/timelineUIUtils'
import PerformanceModel from './timelineModel/performanceModel'
import TimelineData from './timelineModel/timelineData'
import Event from './tracingModel/event'
import CountersGraph from './timelineModel/counterGraph'
import { Range, StatsObject, CountersData } from '../devtools/types'
import TimelineLoader from '../devtools/loader'
import { calcFPS } from '../devtools/utils'
import Track, { TrackType } from '../devtools/timelineModel/track'
import TimelineUIUtils from '../devtools/timelineModel/timelineUIUtils'
import PerformanceModel from '../devtools/timelineModel/performanceModel'
import TimelineData from '../devtools/timelineModel/timelineData'
import Event from '../devtools/tracingModel/event'
import CountersGraph from '../devtools/timelineModel/counterGraph'

export default class Tracelib {
public tracelog: object
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./build/", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"rootDirs": ["./src", "./devtools"], /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
Expand Down