Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
90e7fc41
Commit
90e7fc41
authored
Jan 31, 2015
by
Luca Mussi
Committed by
Chris Rebert
Feb 19, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added package.js for Meteor integration
Closes #15716 by merging it.
parent
d0ec8508
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
README.md
README.md
+1
-0
package.js
package.js
+22
-0
No files found.
README.md
View file @
90e7fc41
...
...
@@ -28,6 +28,7 @@ Four quick start options are available:
-
Clone the repo:
`git clone https://github.com/twbs/bootstrap.git`
.
-
Install with
[
Bower
](
http://bower.io
)
:
`bower install bootstrap`
.
-
Install with
[
npm
](
https://www.npmjs.com
)
:
`npm install bootstrap`
.
-
Install with
[
Meteor
](
https://www.meteor.com/
)
:
`meteor add twbs:bootstrap`
.
Read the
[
Getting started page
](
http://getbootstrap.com/getting-started/
)
for information on the framework contents, templates and examples, and more.
...
...
package.js
0 → 100644
View file @
90e7fc41
// package metadata file for Meteor.js
Package
.
describe
({
name
:
'
twbs:bootstrap
'
,
// http://atmospherejs.com/twbs/bootstrap
summary
:
'
The most popular front-end framework for developing responsive, mobile first projects on the web.
'
,
version
:
'
3.3.2
'
,
git
:
'
https://github.com/twbs/bootstrap.git
'
});
Package
.
onUse
(
function
(
api
)
{
api
.
versionsFrom
(
'
METEOR@1.0
'
);
api
.
use
(
'
jquery
'
,
'
client
'
);
api
.
addFiles
([
'
dist/fonts/glyphicons-halflings-regular.eot
'
,
'
dist/fonts/glyphicons-halflings-regular.svg
'
,
'
dist/fonts/glyphicons-halflings-regular.ttf
'
,
'
dist/fonts/glyphicons-halflings-regular.woff
'
,
'
dist/fonts/glyphicons-halflings-regular.woff2
'
,
'
dist/css/bootstrap.css
'
,
'
dist/js/bootstrap.js
'
,
],
'
client
'
);
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment