screeps-typescript-starter icon indicating copy to clipboard operation
screeps-typescript-starter copied to clipboard

Updating dependencies, especially Rollup and TypeScript

Open ChristianIvicevic opened this issue 6 years ago • 3 comments
trafficstars

Are there any plans to update this package properly to the newest versions of the various dependencies? By doing so manually I noticed the following issues:

  • source-map MUST stay at 0.6.1 for the ErrorMapper to work since SourceMapConsumer has been slightly reworked.
  • Upgrading rollup to 1.0.0 will yield some deprecation warnings:
(!) rpt2 plugin: The ongenerate hook used by plugin rpt2 is deprecated. The generateBundle hook should be used instead.
(!) rpt2 plugin: The onwrite hook used by plugin rpt2 is deprecated. The generateBundle hook should be used instead.
(!) screeps plugin: The ongenerate hook used by plugin screeps is deprecated. The generateBundle hook should be used instead.
(!) screeps plugin: The onwrite hook used by plugin screeps is deprecated. The generateBundle hook should be used instead.
  • I wasn't sure whether the rpt2 or rpt3 plugin are the way to go for TypeScript 3.2+.

ChristianIvicevic avatar Jan 01 '19 16:01 ChristianIvicevic

@ChristianIvicevic there is also another issue with source-map: Error: Unknown module 'fs'

fs (imported by node_modules/source-map/lib/read-wasm.js, commonjs-external:fs)
path (imported by node_modules/source-map/lib/read-wasm.js, commonjs-external:path)

TheAifam5 avatar Mar 02 '19 20:03 TheAifam5

@ChristianIvicevic there is also another issue with source-map: Error: Unknown module 'fs'

fs (imported by node_modules/source-map/lib/read-wasm.js, commonjs-external:fs)
path (imported by node_modules/source-map/lib/read-wasm.js, commonjs-external:path)

Same issue here. Had to remove the usage of ErrorMapper in main.ts....

lpx1233 avatar May 28 '19 03:05 lpx1233

The new source-map module is async only, so can't work with screeps. It needs to be pinned to =0.6.1, which is the last version that was not async.

folke avatar Jan 09 '21 10:01 folke