wallabyjs / atom-wallaby

Wallaby.js atom package starter
Other
57 stars 6 forks source link

Typescript 1.9.0 breaks atom-wallaby #32

Closed garycourt closed 8 years ago

garycourt commented 8 years ago

I'm getting the following error when I try to run atom-wallaby@1.0.7 with typescript@1.9.0-dev.20160406 on some Typescript code:

Postprocessor run failure: e._compiler.getSourceFile is not a function

Here is my wallaby.js file:

module.exports = function (w) {
  return {
    files: [
      'src/*.ts'
    ],

    tests: [
      'src/tests/*.ts'
    ],

    env: {
      type: 'node'
    },

    compilers: {
      '**/*.ts': w.compilers.typeScript({module: 'commonjs', target: 'es5'})
    }
  };
};

This error does not occur if I downgrade Typescript to 1.8.9.

ArtemGovorov commented 8 years ago

The issue is fixed in core v1.0.213. The core will be updated automatically in a few minutes, to get the update ASAP, you may force the core update.