GithubHelp home page GithubHelp logo

Comments (2)

gcanti avatar gcanti commented on August 12, 2024

Hi @volkanunsal

I tried both with and without the plugin configured as a loader in my webpack configuration file

Not sure I'm follow: your karma configuration throws an error without babel-plugin-tcomb?

Anyway this is a configuration I'm using in a project of mine and works fine if can be useful:

devDependecies

{
  "babel": "5.8.34",
  "babel-core": "5.8.34",
  "babel-loader": "5.3.2",
  "babel-plugin-tcomb": "0.1.3",
  "isparta-loader": "1.0.0",
  "karma": "0.13.9",
  "karma-chrome-launcher": "0.2.0",
  "karma-coverage": "0.5.3",
  "karma-firefox-launcher": "0.1.4",
  "karma-tap": "1.0.3",
  "karma-webpack": "1.7.0",
  "tape": "4.2.2",
  "webpack": "1.12.9"
}

karma.conf.js

var webpack = require('webpack')
var path = require('path')

module.exports = function getConfig(config) {
  config.set({
    browserNoActivityTimeout: 30000,
    browsers: [process.env.CONTINUOUS_INTEGRATION ? 'Firefox' : 'Chrome'],
    singleRun: true,
    frameworks: ['tap'],
    files: [
      'test/index.js'
    ],
    preprocessors: {
      'test/index.js': ['webpack']
    },
    webpack: {
      node: {
        fs: 'empty'
      },
      module: {
        preLoaders: [
          // babel
          {
            test: /\.js$/,
            exclude: [
              path.resolve('src/'),
              path.resolve('node_modules/')
            ],
            loader: 'babel',
            query: { plugins: ['tcomb'] }
          },
          // code coverage
          {
            test: /\.js$/,
            include: path.resolve('src/'),
            loader: 'isparta'
          }
        ]
      },
      plugins: [
        new webpack.DefinePlugin({
          'process.env.NODE_ENV': JSON.stringify('test')
        })
      ]
    },
    webpackMiddleware: {
      noInfo: true
    },
    reporters: ['dots', 'coverage'],
    coverageReporter: {
      type: 'text'
    }
  })
}

from babel-plugin-tcomb.

volkanunsal avatar volkanunsal commented on August 12, 2024

I narrowed down the error to the fact that some type was being used for a function declared inside another function. When I moved the function declaration to the top level, it magically started working. I'm not sure if this is a Babel issue, but it sounds like it might be.

from babel-plugin-tcomb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.