@airfleet/generator-init 0.13.1 → 0.13.2
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/templates/assets/admin/scripts/admin.entry.js +0 -1
- package/generators/plugin/templates/assets/admin/styles/{admin.scss → admin.entry.scss} +0 -0
- package/generators/plugin/templates/assets/frontend/scripts/critical.entry.js +0 -1
- package/generators/plugin/templates/assets/frontend/scripts/index.entry.js +0 -2
- package/generators/plugin/templates/assets/frontend/styles/{critical.scss → critical.entry.scss} +0 -0
- package/generators/plugin/templates/assets/frontend/styles/{index.scss → index.entry.scss} +0 -0
- package/generators/plugin/templates/package.json.ejs +3 -3
- package/package.json +1 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "../styles/admin.scss";
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "../styles/critical.scss";
|
package/generators/plugin/templates/assets/frontend/styles/{critical.scss → critical.entry.scss}
RENAMED
|
File without changes
|
|
File without changes
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
"description": "<%= answers.pluginDescription %>",
|
|
4
4
|
"version": "<%= answers.pluginVersion %>",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "dotenv -- parcel build --log-level verbose \"./!(dist)/**/*.entry.js\"",
|
|
7
|
-
"start": "dotenv -- parcel serve --hmr-port 1236 --port 1234 --log-level verbose \"./!(dist)/**/*.entry.js\"",
|
|
6
|
+
"build": "dotenv -- parcel build --log-level verbose \"./!(dist)/**/*.entry.{js,scss}\"",
|
|
7
|
+
"start": "dotenv -- parcel serve --hmr-port 1236 --port 1234 --log-level verbose \"./!(dist)/**/*.entry.{js,scss}\"",
|
|
8
8
|
"base:eslint": "eslint assets --ext .js,.jsx --cache --ignore-path .gitignore",
|
|
9
9
|
"base:prettier": "prettier \"**/*.{js,jsx,ts,tsx,json,css,scss,xml,yaml,yml,md}\"",
|
|
10
|
-
"base:stylelint": "stylelint \"**/*.{css,scss}\" --cache --ignore-path .gitignore",
|
|
10
|
+
"base:stylelint": "stylelint \"**/*.{css,scss}\" --cache --ignore-path .gitignore --allow-empty-input",
|
|
11
11
|
"lint": "run-s --continue-on-error lint:*",
|
|
12
12
|
"lint:prettier": "npm run base:prettier -- --check",
|
|
13
13
|
"lint:eslint": "npm run base:eslint",
|