Angular Templates and Twitter Bootstrap 3

I am trying to use this project https://github.com/ngbp/ngbp , but with Twitter Bootstrap 3. I do not find posts on how to do this. It's because:

  • It is impossible to do
  • This should not be done.
  • I am the only one in the world who wants to do this.
  • There are other ways to do this.

I am afraid that using Twitter Bootstrap 2.3.2 when this template code arrives is old. I'm right?

I tried to fix it myself, but I abandon the world of jungle scripts and JavaScript errors that need to be combined in a secret manner, and maybe if you're lucky you won't get an error. Please help me.

+4
source share
1 answer

Yeoman . Yeoman , , Grunt ( ) Bower ( ). generator Angular. , , . Yeoman Grunt + Bower, Yo - . , Angular , , .

Bootstrap 3, Angular -Bootstrap, Angular UI . Angular Bootstrap Bootstrap, javascript, Angular. CSS . Bootstrap CSS plunker Angular -UI readme.

bower.json. , . , bootstrap css , Angular -ui , .

{
    "name": "test",
    "version": "0.0.1",
    "ignore": [
        "**/.*",
        "node_modules",
        "lib",
        "test",
        "tests"
    ],
    "dependencies": {
        "angular": "latest",
        "angular-route": "latest",
        "angular-bootstrap": "latest",
        "angular-ui-utils": "latest",
        "bootstrap": "latest",
    },
    "devDependencies": {
        "angular-mocks": "latest",
        "angular-scenario": "latest"
    }
}
+7

All Articles