Files
roll20-character-sheets/Pathfinder Community/dev/src/index.js
T
∇ince 9a111f8364 - remove PFMenus.js because it causes PR to fail checks
- src was inside of a src subfolder, should be one level up the tree
2025-01-19 12:53:13 -08:00

30 lines
1016 B
JavaScript

'use strict';
import TAS from './TheAaronSheet.js';
TAS.config({
logging: {
info: process.env.NODE_ENV !== 'production',
debug: process.env.NODE_ENV !== 'production',
},
});
if (process.env.NODE_ENV !== 'production') {
TAS.debugMode();
}
import {PFLog, PFConsole} from './PFLog';
import PFConst from './PFConst';
//importing PFSheet imports everything else
import * as PFSheet from './PFSheet';
import * as HLImport from './HLImport';
import * as PFNPCParser from './PFNPCParser';
import * as PFTemplate from './PFTemplate';
PFConsole.log(' ,## /## ');
PFConsole.log(' /#/ / ## ');
PFConsole.log(' / / / ## ');
PFConsole.log(' | ##___#/ ');
PFConsole.log(' | ## athfinder ');
PFConsole.log(' # | ## sheet version ');
PFConsole.log(' ### / ' + ('0000' + PFConst.version.toFixed(2)).slice(-5) + ' ');
PFConsole.log(' ');