https://github.com/twbs/bootstrap
Revision aa650f0f1e30279f0868433a4afab9c3efa93b2c authored by GeoSot on 30 January 2022, 12:30:04 UTC, committed by GitHub on 30 January 2022, 12:30:04 UTC
Reference:

https://jasmine.github.io/tutorials/async

'DEPRECATION: An asynchronous function called its 'done' callback more than once. This is a bug in the spec, beforeAll, beforeEach, afterAll, or afterEach function in question. This will be treated as an error in a future version. See<https://jasmine.github.io/tutorials/upgrading_to_Jasmine_4.0#deprecations-due-to-calling-done-multiple-times> for more information.
1 parent d092817
Raw File
Tip revision: aa650f0f1e30279f0868433a4afab9c3efa93b2c authored by GeoSot on 30 January 2022, 12:30:04 UTC
tests: replace 'done' callback with 'Promise' to fix deprecation errors (#35659)
Tip revision: aa650f0
package.js
// package metadata file for Meteor.js

/* eslint-env meteor */

Package.describe({
  name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
  summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  version: '5.1.3',
  git: 'https://github.com/twbs/bootstrap.git'
})

Package.onUse(api => {
  api.versionsFrom('METEOR@1.0')
  api.addFiles([
    'dist/css/bootstrap.css',
    'dist/js/bootstrap.js'
  ], 'client')
})
back to top