generator-chisel 2.0.0-alpha.11 → 2.0.0-alpha.13
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/CHANGELOG.md +8 -0
- package/lib/commands/create/creators/app/chisel-starter-theme/package.chisel-tpl.json +2 -2
- package/lib/commands/create/creators/app/template/.devcontainer/devcontainer.json.chisel-tpl +1 -1
- package/lib/commands/create/creators/app/template/.devcontainer/post-create-command.sh.chisel-tpl +1 -0
- package/lib/commands/create/packages-versions.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- INSERT-NEW-ENTRIES-HERE -->
|
|
4
4
|
|
|
5
|
+
## 2.0.0-alpha.13 (2024-11-12)
|
|
6
|
+
|
|
7
|
+
- Adjust command ([c1b4471](https://github.com/xfiveco/generator-chisel/commit/c1b4471))
|
|
8
|
+
|
|
9
|
+
## 2.0.0-alpha.12 (2024-11-12)
|
|
10
|
+
|
|
11
|
+
- Try adjusting commands ([1c322a0](https://github.com/xfiveco/generator-chisel/commit/1c322a0))
|
|
12
|
+
|
|
5
13
|
## 2.0.0-alpha.11 (2024-11-12)
|
|
6
14
|
|
|
7
15
|
- V2: Add Devcontainers (#538) ([b878421](https://github.com/xfiveco/generator-chisel/commit/b878421)), closes [#538](https://github.com/xfiveco/generator-chisel/issues/538)
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"devcontainer": "npx @devcontainers/cli@0.71",
|
|
10
10
|
"devcontainer:up": "npm run --silent devcontainer -- up --workspace-folder ../../..",
|
|
11
|
-
"devcontainer:enter": "../../../.devcontainer/exec bash",
|
|
12
|
-
"devcontainer:start": "../../../.devcontainer/exec npm run --silent start",
|
|
11
|
+
"devcontainer:enter": "/usr/bin/env bash ../../../.devcontainer/exec bash",
|
|
12
|
+
"devcontainer:start": "/usr/bin/env bash ../../../.devcontainer/exec npm run --silent start",
|
|
13
13
|
"start": "chisel-scripts start",
|
|
14
14
|
"dev": "npm run --silent start",
|
|
15
15
|
"build": "chisel-scripts build && npm run lint && npm run phpcs && npm run twigcs",
|
package/lib/commands/create/creators/app/template/.devcontainer/post-create-command.sh.chisel-tpl
CHANGED
|
@@ -8,6 +8,7 @@ pushd ../../..
|
|
|
8
8
|
|
|
9
9
|
sudo chown "$USER:$USER" . index.php wp-config.php
|
|
10
10
|
if [ -d .git ] ; then sudo chown "$USER:$USER" .git ; fi
|
|
11
|
+
chmod +x .devcontainer/compose .devcontainer/exec
|
|
11
12
|
<% if (app.devcontainer) { %>
|
|
12
13
|
{
|
|
13
14
|
npx --yes generator-chisel@<%= chiselVersion %> --devcontainer-complete <%= app.responsesAsBase64 %>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-chisel",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.13",
|
|
4
4
|
"description": "A generator for scaffolding front-end and WordPress projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"chisel": "bin/chisel.js"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"tinyqueue": "^2.0.3",
|
|
38
38
|
"update-notifier": "^4.1.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "9b397e788cc0b0ee37fccdaf80f7ee80386a0617"
|
|
41
41
|
}
|