• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

glorious-codes / glorious-codes / 823c81e8-c846-4654-b928-3aa8872625cd

05 Oct 2023 08:12PM CUT coverage: 100.0%. Remained the same
823c81e8-c846-4654-b928-3aa8872625cd

Pull #107

circleci

web-flow
chore(deps): bump postcss and css-loader

Bumps [postcss](https://github.com/postcss/postcss) to 8.4.31 and updates ancestor dependency [css-loader](https://github.com/webpack-contrib/css-loader). These dependencies need to be updated together.


Updates `postcss` from 8.4.21 to 8.4.31
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.4.21...8.4.31)

Updates `css-loader` from 3.6.0 to 6.8.1
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack-contrib/css-loader/compare/v3.6.0...v6.8.1)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: indirect
- dependency-name: css-loader
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #107: chore(deps): bump postcss and css-loader

27 of 27 branches covered (100.0%)

Branch coverage included in aggregate %.

252 of 252 relevant lines covered (100.0%)

14.77 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/scripts/base/components/btn/btn.js
1
import '@styles/btn.styl';
2
import icon from '@scripts/base/components/icon/icon';
3
import template from './btn.html';
4

5
export default {
6
  name: 'btn',
7
  components: {
8
    icon
9
  },
10
  props: [
11
    'iconName',
12
    'theme',
13
    'size'
14
  ],
15
  computed: {
16
    classes() {
17
      return {
18✔
18
        [`btn-${this.theme}`]: ['primary','danger'].includes(this.theme),
19
        [`btn-${this.size}`]: ['small'].includes(this.size)
20
      };
21
    },
22
  },
23
  template
24
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc