scrivito_content_browser 1.1.1 → 1.2.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b09777dc68f43f77dbe0965dbdc5d92e611a790d
4
- data.tar.gz: 67a702dac37b53cc1072eb07ed16bdce4078f390
3
+ metadata.gz: e626ef90d293c028f11077bae5c1dafcb3b65594
4
+ data.tar.gz: 7870d0b6c705eea5ebf1c53552ab0ac53a0e8322
5
5
  SHA512:
6
- metadata.gz: 78fdb25515d3b8149567cc3cc3b84182b5733d8486b857a40f765757b6b47f9bfb3ba75474a7600ffc4409f5cd6701933e7a2e1e9119bc7a5684985698d1259a
7
- data.tar.gz: f702643de613f753e6dd32afcaf6afa902bfae24c8e428647c507d3d054d4988e1670728fa21ffa5e4bfb02ba5f7e583894f8757b90046c2549769deba38c508
6
+ metadata.gz: 42393cafed8576686803abb11bb5b2730e5ea9df386f95daa0093f1c95ab84a385bfe9332112b50356850a698abe0d2732316d71ee835af4ef3540fa29f72578
7
+ data.tar.gz: 7ba142c0ddcb179ab675807089bbfc6221a7852159db50e2ab2661cdd7a294ee2d32c6991f2f624e94ecaaa1504eecb099ec6721262d3b68ca4d360f45d3a072
data/README.md CHANGED
@@ -30,8 +30,7 @@ Before developing make sure you have both `nodejs` and `npm` installed, then:
30
30
 
31
31
  cd scrivito_content_browser/js
32
32
  npm install # load the dependencies - if it fails, make sure you're using the latest nodejs
33
- sudo npm install -g grunt-cli # install the grunt command
34
- grunt build # build the JS files - if it fails, check for name clashes with the node package
33
+ npm run package
35
34
 
36
35
  If you want to develop the `scrivito_content_browser`-gem locally (including it by path) you need to configure an `asset_host` in your rails application. Example `config/env/development.rb`:
37
36
 
@@ -49,18 +48,13 @@ and be sure that you have this options
49
48
  After that start webpack dev server:
50
49
 
51
50
  npm start
52
- # or
53
- grunt webpack-dev-server
54
51
 
55
52
  ## Run tests
56
53
 
57
- grunt webpack_run_test
58
- # or
59
- grunt
60
- # or
61
- karma start
62
- # or
63
- grunt karma:test # to run webpack dev server watcher
54
+ npm test
55
+
56
+ # or for watching files
57
+ npm run test:watch
64
58
 
65
59
  ## Changelog
66
60