@airfleet/generator-init 0.13.4 → 0.15.1

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.
@@ -114,6 +114,8 @@ export default class extends Generator {
114
114
  "acf-json/.gitkeep",
115
115
  "assets/admin/scripts/admin.entry.js",
116
116
  "assets/admin/styles/admin.entry.scss",
117
+ "assets/editor/scripts/editor.entry.js",
118
+ "assets/editor/styles/editor.entry.scss",
117
119
  "assets/frontend/fonts/.gitkeep",
118
120
  "assets/frontend/images/.gitkeep",
119
121
  "assets/frontend/scripts/critical.entry.js",
@@ -1 +1 @@
1
- minor
1
+ patch
@@ -0,0 +1 @@
1
+ /* eslint-disable unicorn/no-empty-file */
@@ -0,0 +1 @@
1
+ /* eslint-disable unicorn/no-empty-file */
@@ -0,0 +1 @@
1
+ /* eslint-disable unicorn/no-empty-file */
@@ -40,6 +40,7 @@ class Setup {
40
40
  $plugin->enqueue();
41
41
  $plugin->enqueue_critical();
42
42
  $plugin->enqueue_admin();
43
+ $plugin->enqueue_editor();
43
44
  <%_ if (answers.pluginCreateOptions) { _%>
44
45
  $plugin->add_options_page();
45
46
  <%_ } _%>
@@ -5,7 +5,7 @@
5
5
  "scripts": {
6
6
  "build": "dotenv -- parcel build --log-level verbose \"./!(dist)/**/*.entry.{js,scss}\"",
7
7
  "start": "dotenv -- parcel serve --hmr-port 1236 --port 1234 --log-level verbose \"./!(dist)/**/*.entry.{js,scss}\"",
8
- "base:eslint": "eslint assets --ext .js,.jsx --cache --ignore-path .gitignore",
8
+ "base:eslint": "eslint \"**/*.js\" --cache --ignore-path .gitignore",
9
9
  "base:prettier": "prettier \"**/*.{js,jsx,ts,tsx,json,css,scss,xml,yaml,yml,md}\"",
10
10
  "base:stylelint": "stylelint \"**/*.{css,scss}\" --cache --ignore-path .gitignore --allow-empty-input",
11
11
  "lint": "run-s --continue-on-error lint:*",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {},
44
44
  "devDependencies": {
45
- "@airfleet/wordpress-dev": "^1.0.0"
45
+ "@airfleet/wordpress-dev": "^1.1.0"
46
46
  },
47
47
  "browserslist": [
48
48
  "defaults",
@@ -0,0 +1 @@
1
+ /* eslint-disable unicorn/no-empty-file */
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.13.4",
4
+ "version": "0.15.1",
5
5
  "scripts": {},
6
6
  "publishConfig": {
7
7
  "access": "public"