@fortawesome/vue-fontawesome 3.0.0-4 → 3.0.0-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/DEVELOPMENT.md +1 -1
- package/index.es.js +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [3.0.0-5](https://github.com/FortAwesome/vue-fontawesome/releases/tag/3.0.0-5) - 2021-10-18
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
* Include 1.3.0-beta versions in peer dependencies
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
8
16
|
## [3.0.0-4](https://github.com/FortAwesome/vue-fontawesome/releases/tag/3.0.0-4) - 2021-05-23
|
|
9
17
|
|
|
10
18
|
### Fixed
|
package/DEVELOPMENT.md
CHANGED
|
@@ -19,7 +19,7 @@ test | Execute unit tests
|
|
|
19
19
|
1. Update `README.md` and `package.json`; adding any contributors
|
|
20
20
|
1. Update the `CHANGELOG.md`
|
|
21
21
|
1. `npm publish --tag prerelease`
|
|
22
|
-
1. `npm publish --
|
|
22
|
+
1. `npm publish --tag prerelease --registry https://npm.fontawesome.com`
|
|
23
23
|
1. `git add .`
|
|
24
24
|
1. `git commit -a -m 'Release VERSION'`
|
|
25
25
|
1. `git push`
|
package/index.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { h, defineComponent, computed, watch } from 'vue';
|
|
2
2
|
import { parse, icon, config, text } from '@fortawesome/fontawesome-svg-core';
|
|
3
3
|
|
|
4
|
-
var commonjsGlobal = typeof
|
|
4
|
+
var commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
5
5
|
|
|
6
6
|
function createCommonjsModule(fn, module) {
|
|
7
7
|
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
(factory((global['vue-fontawesome'] = {}),global.vue,global.FontAwesome));
|
|
5
5
|
}(this, (function (exports,vue,fontawesomeSvgCore) { 'use strict';
|
|
6
6
|
|
|
7
|
-
var commonjsGlobal = typeof
|
|
7
|
+
var commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
8
8
|
|
|
9
9
|
function createCommonjsModule(fn, module) {
|
|
10
10
|
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fortawesome/vue-fontawesome",
|
|
3
3
|
"description": "Official Vue component for Font Awesome 5",
|
|
4
|
-
"version": "3.0.0-
|
|
4
|
+
"version": "3.0.0-5",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.es.js",
|
|
7
7
|
"jsnext:main": "index.es.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@fortawesome/fontawesome-svg-core": "
|
|
41
|
+
"@fortawesome/fontawesome-svg-core": "~1 || >=1.3.0-beta1",
|
|
42
42
|
"vue": ">= 3.0.0 < 4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|