@airfleet/generator-init 0.15.2 → 0.15.3

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/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Airfleet Generator
2
2
 
3
3
  ![npm](https://img.shields.io/npm/v/@airfleet/generator-init)
4
- [![pipeline status](https://gitlab.com/codersclan/tools/airfleet-generator/badges/main/pipeline.svg)](https://gitlab.com/codersclan/tools/airfleet-generator/-/commits/main)
4
+ [![📦 Release (npm)](https://github.com/airfleet/airfleet-generator-cli/actions/workflows/release-npm.yml/badge.svg)](https://github.com/airfleet/airfleet-generator-cli/actions/workflows/release-npm.yml)
5
5
 
6
6
  A Yeoman generator to scaffold common Airfleet features.
7
7
 
@@ -96,7 +96,6 @@ export default class extends Generator {
96
96
  ".airfleet-release",
97
97
  ".editorconfig",
98
98
  ".gitattributes",
99
- ".gitlab-ci.yml",
100
99
  "CHANGELOG.md",
101
100
  "LICENSE.ejs",
102
101
  "package.json.ejs",
@@ -8,8 +8,6 @@ import requiredText from "../../utils/validation/requiredText.js";
8
8
  import title from "../../utils/log/title.js";
9
9
  import highlightText from "../../utils/log/text/highlightText.js";
10
10
  import lines from "../../utils/log/text/lines.js";
11
- import brandText from "../../utils/log/text/brandText.js";
12
- import dangerText from "../../utils/log/text/dangerText.js";
13
11
  import infoBox from "../../utils/log/boxes/infoBox.js";
14
12
 
15
13
  export default class extends Generator {
@@ -78,7 +76,7 @@ export default class extends Generator {
78
76
  name: "pluginPhpVersion",
79
77
  message: "What's the required PHP version?",
80
78
  validate: requiredText("Please enter the PHP version"),
81
- default: ">=7.4",
79
+ default: ">=8.0",
82
80
  },
83
81
  {
84
82
  type: "input",
@@ -128,7 +126,6 @@ export default class extends Generator {
128
126
  ".editorconfig",
129
127
  ".env",
130
128
  ".gitattributes",
131
- ".gitlab-ci.yml",
132
129
  ".parcelrc",
133
130
  ".prettierignore",
134
131
  "CHANGELOG.md",
@@ -16,7 +16,7 @@
16
16
  * Author: Airfleet
17
17
  * Author URI: https://www.airfleet.co/
18
18
  * Text Domain: <%= name.slug %>
19
- * GitLab Plugin URI: <%= repositoryBase %>
19
+ * GitHub Plugin URI: <%= repositoryBase %>
20
20
  * Primary Branch: <%= mainBranch %>
21
21
  * Release Asset: true
22
22
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@airfleet/generator-init",
3
3
  "description": "A Yeoman generator to scaffold common Airfleet features",
4
- "version": "0.15.2",
4
+ "version": "0.15.3",
5
5
  "scripts": {},
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://gitlab.com/codersclan/tools/airfleet-generator.git"
21
+ "url": "https://github.com/airfleet/airfleet-generator-cli.git"
22
22
  },
23
23
  "type": "module",
24
24
  "exports": "./generators/app/index.js",
@@ -1,8 +0,0 @@
1
- stages:
2
- - release
3
-
4
- include:
5
- # Release process
6
- - project: 'codersclan/tools/gitlab-ci-templates'
7
- ref: main
8
- file: '/release/npm.yaml'
@@ -1,14 +0,0 @@
1
- stages:
2
- - test
3
- - release
4
- - upload
5
-
6
- include:
7
- # Test
8
- - project: "codersclan/tools/gitlab-ci-templates"
9
- ref: main
10
- file: "/test/wordpress.yaml"
11
- # Release process
12
- - project: "codersclan/tools/gitlab-ci-templates"
13
- ref: main
14
- file: "/release/wp-plugin.yaml"