Skip to content

Commit

Permalink
Merge pull request #19 from apple-x-co/fix-config
Browse files Browse the repository at this point in the history
fix config
  • Loading branch information
apple-x-co authored Feb 26, 2022
2 parents 6bc96d8 + fb9650b commit c8fbc3a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ composer.phar
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock

rocket.phar
config.json
###
/dist/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ cat example.txt | ./rocket.phar --config ./rocket.json --notify
composer run-script build
```

プロジェクト内全てのファイルが圧縮されます。クレデンシャルファイルは配置しないこと
プロジェクト内の全てのファイルが圧縮されます。資格情報ファイルなどは配置しないでください
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
}
},
"scripts": {
"build": "rm -rf dist/rocket.phar; phar-composer build .; mv -f rocket.phar dist/rocket.phar; chmod u+x dist/rocket.phar"
"build": "rm -rf dist/rocket.phar; phar-composer build .; mv -f rocket.phar dist/rocket.phar; chmod u+x dist/rocket.phar",
"info": "dist/rocket.phar --info --no-color"
},
"config": {
"platform": {
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

class Version
{
const ROCKET_VERSION = '0.1.11';
const ROCKET_VERSION = '0.1.12';
}
5 changes: 3 additions & 2 deletions src/config/eccube4.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"/.devcontainer/",
"/.github/",
"/app/Plugin/",
"/app/PluginData/",
"/app/PluginData",
"/app/proxy/",
"/codeception/",
"/dockerbuild/",
Expand All @@ -38,9 +38,10 @@
"/.env.dist",
"/.env.install",
"/.env.local",
"/.env.stage",
"/.gitignore",
"/.gitmodules",
"/.maitenance",
"/.maintenance",
"/.php_cs.dist",
"/.scrutinizer.yml",
"/.travis.yml",
Expand Down

0 comments on commit c8fbc3a

Please sign in to comment.