Skip to content

Commit

Permalink
feat: transition to NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateu Aguiló Bosch committed Aug 12, 2018
1 parent 7cff09f commit ac19bb4
Show file tree
Hide file tree
Showing 7 changed files with 12,230 additions and 7,912 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"bio": "Engineer and programmer focused on online applications.",
"public_repos": 67,
"public_gists": 35,
"followers": 86,
"followers": 88,
"following": 45,
"created_at": "2011-10-20T14:27:43Z",
"updated_at": "2018-06-22T10:20:03Z"
Expand Down
4 changes: 2 additions & 2 deletions .emdaer/docs/local-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ Learn more about configuration in the
Start your server with multiple threads serving requests (one per CPU core).

```
yarn start
npm start
```
Inspect the `"scripts"` section in the [`package.json`](./package.json) to find
other useful scripts like `yarn debug`, `yarn stop` and `yarn test`.
other useful scripts like `npm run debug`, `npm run stop` and `npm run test`.
### (Optional) Install the redis server
Optionally you can install the Redis server by doing `gem install redis` then
Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
stage: test
node_js: 'lts/carbon'
script:
- yarn lint
- yarn test-ci
- yarn add --no-lockfile coveralls
- npm run lint
- npm run test-ci
- npm install --no-save coveralls
# Report coverage to coveralls.io
- cat ./__coverage__/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- rm -fr ./__coverage__
Expand All @@ -31,4 +31,4 @@ jobs:
if: branch = master
# Semantic release will fail if it's not using node 8.
node_js: 'lts/carbon'
script: yarn semantic-release
script: npm run semantic-release
6 changes: 3 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-->

<!--
emdaerHash:0fb5ef7c247e491ef81f5a65b60d26a8
emdaerHash:245f97c9103513ad3bf8949467d885e8
-->

<h1 id="installation-img-align-right-src-logo-svg-alt-contenta-logo-title-contenta-logo-width-100-">Installation <img align="right" src="./logo.svg" alt="Contenta logo" title="Contenta logo" width="100"></h1>
Expand Down Expand Up @@ -64,10 +64,10 @@ cms:
<h3 id="start-your-server">Start your server</h3>
<p>Start your server with multiple threads serving requests (one per CPU core).</p>
<pre><code>
yarn start
npm start
</code></pre>
<p>Inspect the <code>&quot;scripts&quot;</code> section in the <a href="./package.json"><code>package.json</code></a> to find
other useful scripts like <code>yarn debug</code>, <code>yarn stop</code> and <code>yarn test</code>.</p>
other useful scripts like <code>npm run debug</code>, <code>npm run stop</code> and <code>npm run test</code>.</p>
<h3 id="-optional-install-the-redis-server">(Optional) Install the redis server</h3>
<p>Optionally you can install the Redis server by doing <code>gem install redis</code> then
follow the setup in <a href="https://github.com/contentacms/contentajsRedis#readme"><code>@contentacms/redis</code></a>.</p>
Expand Down
Loading

0 comments on commit ac19bb4

Please sign in to comment.