iframe-resizer 4.4.1 → 4.4.2
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/bin/post.js +25 -0
- package/package.json +1 -1
package/bin/post.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const msg = [
|
|
2
|
+
'====================================================================',
|
|
3
|
+
'',
|
|
4
|
+
' IFRAME-RESIZER 5 ',
|
|
5
|
+
'',
|
|
6
|
+
' Iframe-Resizer 5 is now available via the following two packages:',
|
|
7
|
+
'',
|
|
8
|
+
' * @iframe-resizer/parent',
|
|
9
|
+
' * @iframe-resizer/child',
|
|
10
|
+
'',
|
|
11
|
+
' Additionally their are also new versions of iframe-resizer for',
|
|
12
|
+
' React, Vue, and jQuery.',
|
|
13
|
+
'',
|
|
14
|
+
' Version 5 of iframe-resizer has been extensively rewritten to',
|
|
15
|
+
' use modern browser APIs, which has enabled significantly better',
|
|
16
|
+
' performance and greater accuracy in the detection of content',
|
|
17
|
+
' resizing events.',
|
|
18
|
+
'',
|
|
19
|
+
' Please see https://iframe-resizer.com/upgrade for more details.',
|
|
20
|
+
'',
|
|
21
|
+
'====================================================================',
|
|
22
|
+
'',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
msg.forEach(m => console.log(m))
|