theme-juice 0.4.1 → 0.4.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/theme-juice/cli.rb +1 -1
- data/lib/theme-juice/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c87f8b69ae0a6c9c28d27970ff3c5634fac978ba
|
|
4
|
+
data.tar.gz: 277f3ffd8f57a63a89459615ed9b36c35e62b94a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9eafa73cbfe7f7c651a141e6b652732f3e1f90cb280705b8c94db5a4a3bfc3512fcf86e1226ed1ca2aff0fea94cc02dae18210aabc684747a360044d4e12364
|
|
7
|
+
data.tar.gz: ffac0e0645b0d0c3be4636a9c71c787f5c40e1da7656e77abefa009cc05e6761fa31b423ff7e02dd3c04a0e2f43565da7ddb3e424f748c80f9ead8ee059c50eb
|
data/README.md
CHANGED
|
@@ -103,7 +103,7 @@ tj vm # Aliases: vagrant, vvv
|
|
|
103
103
|
### Managing vendor dependencies:
|
|
104
104
|
Use this to easily manage your dependencies with [Composer](https://github.com/composer/composer), or whatever other command you set in your `tj-config.yml`. This is a wrapper for whatever command is in your config file.
|
|
105
105
|
```bash
|
|
106
|
-
tj vendor # Aliases:
|
|
106
|
+
tj vendor # Aliases: deps, dependencies
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
### Managing deployment and migration:
|
data/lib/theme-juice/cli.rb
CHANGED
|
@@ -7,7 +7,7 @@ module ThemeJuice
|
|
|
7
7
|
map %w[remove, trash, teardown] => :delete
|
|
8
8
|
map %w[sites, show] => :list
|
|
9
9
|
map %w[assets, dev] => :watch
|
|
10
|
-
map %w[
|
|
10
|
+
map %w[dependencies, deps] => :vendor
|
|
11
11
|
map %w[deploy, remote] => :server
|
|
12
12
|
map %w[vagrant, vvv] => :vm
|
|
13
13
|
|
data/lib/theme-juice/version.rb
CHANGED