mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-01-18 23:31:31 -08:00
feat: add sourcemap support
This commit is contained in:
parent
623542bd90
commit
84f417b892
6 changed files with 7 additions and 1 deletions
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -3083,7 +3083,7 @@
|
|||
"@tiddlygit/tiddlywiki": {
|
||||
"version": "5.2.0-prerelease.20210623",
|
||||
"resolved": "https://registry.npmjs.org/@tiddlygit/tiddlywiki/-/tiddlywiki-5.2.0-prerelease.20210623.tgz",
|
||||
"integrity": "sha512-4r8iC2E87yF5yXSb+imFjKht8zacJQcSWRjoc5BHpKWVT+z7aiyjvwdRFeyyaEcMD8Z17hzxssWBuA5zfRhRUA=="
|
||||
"integrity": "sha512-Sqxz0aM5HA0gDsEq8SknkmkX7hVbl12xSbefSi+3XVn4D9gsFtX3NTxcTvit6Wm8dYJInaqjceeau25dGaNCdg=="
|
||||
},
|
||||
"@ts-morph/bootstrap": {
|
||||
"version": "0.9.1",
|
||||
|
|
|
|||
|
|
@ -229,6 +229,7 @@
|
|||
"rimraf": "3.0.2",
|
||||
"simplebar": "6.0.0-beta.4",
|
||||
"simplebar-react": "3.0.0-beta.5",
|
||||
"source-map-support": "^0.5.19",
|
||||
"spectron": "^15.0.0",
|
||||
"style-loader": "2.0.0",
|
||||
"styled-components": "5.3.0",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/* eslint-disable @typescript-eslint/no-misused-promises */
|
||||
import 'source-map-support/register';
|
||||
import 'reflect-metadata';
|
||||
import fs from 'fs-extra';
|
||||
import path from 'path';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
/* eslint-disable @typescript-eslint/strict-boolean-expressions */
|
||||
/* eslint-disable promise/always-return */
|
||||
import 'source-map-support/register';
|
||||
import 'reflect-metadata';
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import i18n from 'i18next';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
/* eslint-disable @typescript-eslint/no-misused-promises */
|
||||
import 'source-map-support/register';
|
||||
import { expose } from 'threads/worker';
|
||||
import { Observable } from 'rxjs';
|
||||
import { clone, commitAndSync, GitStep, ILoggerContext, initGit } from 'git-sync-js';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
import 'source-map-support/register';
|
||||
import { expose } from 'threads/worker';
|
||||
import path from 'path';
|
||||
import tiddlywiki from '@tiddlygit/tiddlywiki';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue