aurelia / framework

The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia.
MIT License
11.75k stars 623 forks source link

aurelia-pal-browser doesn't isntall when installing aurelia framework as it's debpendency #847

Closed amirqasemi74 closed 6 years ago

amirqasemi74 commented 6 years ago

Hi.

Today I started to install Aurelia Using This command: jspm install aurelia-framework aurelia-bootstrapper

as I started to run my project, it seem to not install aurelia-pal-browser as it's dependency

i fixed it by install it: jspm install aurelia-pal-browser

so it can be added to dependencies of framework when it's installing..

tanks

Alexander-Taran commented 6 years ago

bootstrapper lists pal-browser as a dependency in jspm section of package.json https://github.com/aurelia/bootstrapper/blob/master/package.json as far as I remember, you have to add it to config.js though, which you did by runing jspm install..

Alexander-Taran commented 6 years ago
async triageQuestion(id) =>{
 questionAnswered()
 let response = await getResponseFromOP( { timeout : 3weeks } )
 if(!response) {
    closeQuestion(id,randomReason())
 }
}
Alexander-Taran commented 6 years ago

Thanks @amirqasemi74