@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.
- package/generators/plugin/index.js +2 -0
- package/generators/plugin/templates/.airfleet-release +1 -1
- package/generators/plugin/templates/assets/admin/scripts/admin.entry.js +1 -0
- package/generators/plugin/templates/assets/editor/scripts/editor.entry.js +1 -0
- package/generators/plugin/templates/assets/editor/styles/editor.entry.scss +0 -0
- package/generators/plugin/templates/assets/frontend/scripts/critical.entry.js +1 -0
- package/generators/plugin/templates/inc/Setup.php.ejs +1 -0
- package/generators/plugin/templates/package.json.ejs +2 -2
- package/generators/plugin/templates/partials/parcelkeep.entry.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
1
|
+
patch
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* eslint-disable unicorn/no-empty-file */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* eslint-disable unicorn/no-empty-file */
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* eslint-disable unicorn/no-empty-file */
|
|
@@ -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
|
|
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.
|
|
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 */
|