Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kgrz/styles
https://github.com/kgrz/styles
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kgrz/styles
- Owner: kgrz
- Created: 2015-07-31T02:35:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-01T13:58:09.000Z (over 9 years ago)
- Last Synced: 2023-03-12T07:18:59.019Z (almost 2 years ago)
- Language: CSS
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Create a `package.json` file in each repo.
2. Install this package in each repo by doing:
`npm install --save`. That command will save this
package as a dependency in the other repo's `package.json`.
3. Once that is done, in each repo, run `npm link ≤local styles repo>`
so that there is no need to push the changes in this repo and pick
them up in the other repos while in development. The CSS in these
files can be edited and he changes can be seen immediately.To link a npm package that has not been published yet, the following
command can be used. That said, it won't add the linked package details
to the target repo's `package.json`.npm link @codemancers/styles ../styles
If the module is already installed, then running the above link command
won't work. Just the plain `npm link ../styles` will do.