wp-advads 1.0.11 → 1.0.12

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "wp-advads",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "description": "Create a Advanced Ads wordPress plugin eco system.",
6
6
  "author": {
7
7
  "name": "Shakeeb Ahmed",
@@ -16,42 +16,6 @@ export default ( next ) => {
16
16
  const getAnswer = ( key, defaultVal = '' ) => get( settings, key, defaultVal )
17
17
 
18
18
  const questions = [
19
- // Company
20
- {
21
- type: 'input',
22
- name: 'company.name',
23
- message: 'Enter company name',
24
- default: getAnswer( 'company.name','Advanced Ads' ),
25
- },
26
- {
27
- type: 'input',
28
- name: 'company.url',
29
- message: 'Enter company website url',
30
- default: getAnswer( 'company.url', 'https://wpadvancedads.com/' ),
31
- filter: ( val ) => val.toLowerCase()
32
- },
33
-
34
- // Author
35
- {
36
- type: 'input',
37
- name: 'author.name',
38
- message: 'Enter author name',
39
- default: getAnswer( 'author.name', 'Advanced Ads' ),
40
- },
41
- {
42
- type: 'input',
43
- name: 'author.email',
44
- message: 'Enter author email',
45
- default: getAnswer( 'author.email', 'info@wpadvancedads.com' ),
46
- filter: ( val ) => val.toLowerCase()
47
- },
48
- {
49
- type: 'input',
50
- name: 'author.url',
51
- message: 'Enter author website url',
52
- default: getAnswer( 'author.url', 'https://wpadvancedads.com' ),
53
- filter: ( val ) => val.toLowerCase()
54
- },
55
19
 
56
20
  // WordPress
57
21
  {