1. 18 May, 2018 2 commits
    • Cole Bemis's avatar
      build: Use npx in build script · 0d65b576
      Cole Bemis authored
      0d65b576
    • Cole Bemis's avatar
      fix: Remove unused polyfills and update build config · c978b1cb
      Cole Bemis authored
      Removes polyfills for `Object.assign` and `Set` which, as far as I can tell, are unused in the
      codebase. Updates `webpack` from 3 to 4. Replaces `babel-preset-es2015` with `babel-preset-env`.
      Reduces the minified bundle size (`feather.min.js`) by **9.3kB** (72.4kB to 63.1kB). Does not change
      any functionality of the library.
      c978b1cb
  2. 01 Apr, 2018 1 commit
  3. 21 Feb, 2018 1 commit
  4. 19 Nov, 2017 1 commit
    • Cole Bemis's avatar
      feat: Update API · f243624f
      Cole Bemis authored
      BREAKING CHANGE: 
      
      Each icon in the `feather.icons` object is now an `Icon` object with a `name`, `contents`, `tags` and `attrs` property.
      ```js
      /* BEFORE */
      feather.icons.x
      // '<line ... /><line ... />'
      
      /* AFTER */
      feather.icons.x
      // {
      //    name: 'x',
      //    contents: '<line ... /><line ... />`,
      //    tags: ['cancel', 'close', 'delete', 'remove'],
      //    attrs: {
      //      class: 'feather feather-x',
      //      xmlns: 'http://www.w3.org/2000/svg',
      //      width: 24,
      //      height: 24,
      //      viewBox: '0 0 24 24',
      //      fill: 'none',
      //      stroke: 'currentColor',
      //      'stroke-width': 2,
      //      'stroke-linecap': 'round',
      //      'stroke-linejoin': 'round',
      //    }
      // }
      ```
      
      `feather.toSvg()` has been deprecated in favor of `feather.icons[name].toSvg()`:
      ```js
      /* BEFORE */
      feather.toSvg('x')
      
      /* AFTER */
      feather.icons.x.toSvg()
      ```
      
      `feather.replace()` now copies all attributes on the placeholder element (i.e. `<i>`) to the `<svg>` tag instead of just `class` and `id`:
      
      ```html
      <i data-feather="circle" id="my-circle" class="foo bar" stroke-width="1"></i>
      <!--
      <i> will be replaced with:
      <svg id="my-circle" class="feather feather-circle foo bar" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle></svg>
      -->
      ```
      Unverified
      f243624f
  5. 13 May, 2017 3 commits