Skip to content

Commit

Permalink
Merge pull request #67 from Hi-Folks/develop
Browse files Browse the repository at this point in the history
v0.3.1
  • Loading branch information
roberto-butti authored Apr 18, 2021
2 parents 8fdf018 + 7cc0b8b commit 8d096a1
Show file tree
Hide file tree
Showing 9 changed files with 18,332 additions and 1,237 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '15.x'
- name: Cache node_modules directory
uses: actions/cache@v2
id: node_modules-cache
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## 0.3.1 - 2021-04-18
### Change
- Update default Node version to 15.x (stable)
- Fix some typos in the help labels in the Form
- Upgraded Node packages

## 0.3.0 - 2021-04-15
### Add
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Livewire/ConfiguratorForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ConfiguratorForm extends Component
public $postgresqlDatabasePort;
public $stepPhpVersions; // 7.4
public $stepNodejs; // false
public $stepNodejsVersion; // 12.x
public $stepNodejsVersion; // 15.x
public $stepCachePackages; //true
public $stepCacheVendors; //true
public $stepCacheNpmModules; // true
Expand Down Expand Up @@ -111,7 +111,7 @@ private function loadDefaults()
$this->postgresqlDatabasePort = 55432;
$this->stepPhpVersions = ["8.0", "7.4"];
$this->stepNodejs = false;
$this->stepNodejsVersion = "14.x";
$this->stepNodejsVersion = "15.x";
$this->stepCachePackages = true;
$this->stepCacheVendors = true;
$this->stepCacheNpmModules = true;
Expand Down
36 changes: 18 additions & 18 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8d096a1

Please sign in to comment.