wsick / Fayde.Controls

Extended controls library for Fayde
MIT License
2 stars 3 forks source link

update project and dependency packages to the latest version. #2

Closed Sally-Xu closed 9 years ago

Sally-Xu commented 9 years ago

added grunt-bower-install-simple, grunt-version-ts to the package.json. Modified Grunt tasks so the testsite and test can be built without errors.

Sally-Xu commented 9 years ago

Still getting an error "testsite/ViewModels/Person.ts(50,27): error TS2304: Cannot find name 'Map'." when try to run the control's testsite. My other project which also used Map class is also broken now. What is the replacement for Map class?

BSick7 commented 9 years ago

Map was removed from the typescript 1.5 lib.d.ts for some reason. You can just add a .d.ts file with the definition

Sally-Xu commented 9 years ago

Ya, just read typescript 1.5 breaking changes, Map is removed.

But I found Map class in exjs. I'm going to add exjs to the lib of this project since we are already including exjs in all the other fayde projects.