wp-advads 1.0.25 → 1.0.27

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.25",
4
+ "version": "1.0.27",
5
5
  "description": "Create a Advanced Ads wordPress plugin eco system.",
6
6
  "author": {
7
7
  "name": "Shakeeb Ahmed",
@@ -29,7 +29,7 @@
29
29
  "url": "https://github.com/advanced-ads/npm-scaffolding/issues"
30
30
  },
31
31
  "homepage": "https://github.com/advanced-ads/npm-scaffolding#readme",
32
- "devDependencies": {
32
+ "dependencies": {
33
33
  "async": "^3.2.6",
34
34
  "chalk": "^5.4.1",
35
35
  "commander": "^13.1.0",
@@ -116,6 +116,7 @@ function updateConfigFile(next) {
116
116
  settings.wp.version = pluginData.semver.getNextVersionString()
117
117
  saveConfig(settings)
118
118
  onSameLine(`${logSymbols.success} Version updated in config file`)
119
+ next()
119
120
  }
120
121
 
121
122
  /**
@@ -23,7 +23,8 @@ import updateVersionNumber from './release/change-version.js'
23
23
 
24
24
  export const pluginData = {
25
25
  commitMessages: [],
26
- changelogChanges: false
26
+ changelogChanges: false,
27
+ locales: {},
27
28
  }
28
29
 
29
30
  export default async () => {