Giter VIP home page Giter VIP logo

Comments (3)

tomatau avatar tomatau commented on July 24, 2024

Hi - how are you starting this commands? Could you give me some repro steps as when I run npm start it works for me.

from breko-hub.

nasushkov avatar nasushkov commented on July 24, 2024

I simplified your code for my case So this one doesn't work:

require('babel-polyfill');
const argv = require('yargs').argv;
const fileWithPath = (() => {
    switch(true) {        
        case argv.build:
            return './build.js';
        default:
        case argv.start:
            return '../app/server';
    }
})();
require(fileWithPath);

And this works fine:

require('babel-polyfill');
require("babel-register")({
    presets: [ 'es2015', 'react', 'stage-0'],
    plugins: [
        "add-module-exports",
        "babel-root-import",
        "react-require",
        ["provide-modules", {
            "debug": "debug"
        }]
    ]
});
const argv = require('yargs').argv;

const fileWithPath = (() => {
    switch(true) {        
        case argv.build:
            return './build.js';
        default:
        case argv.start:
            return '../app/server';
    }
})();

require(fileWithPath);

Everything else is pretty same. Maybe it's because I'm running it on windows 10.
The second problem is not valid anymore (I was too late to set DEBUG variable, my mistake)

from breko-hub.

tomatau avatar tomatau commented on July 24, 2024

how are you starting this command? babel needs to know that it should be applied to the files still, so you would either need to compile it with babel or start using babel-node.

I prefer to use the babel-register in combination with a babelrc.

The problems you're facing aren't with this boilerplate as you've changed the boilerplate. Your problems are with using babel the way you expect to.

from breko-hub.

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.