Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit d025318

Browse files
authored
Merge pull request #11 from watson-developer-cloud/remove-icons-js
Remove svg icons and js
2 parents c930f8b + 2caa831 commit d025318

File tree

103 files changed

+2224
-1046
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+2224
-1046
lines changed

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
dist
3+
example/src/js/prism.min.js
4+
example/build
5+
coverage

.eslintrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "airbnb",
3+
"import/no-extraneous-dependencies": ["warn", {
4+
"devDependencies": true,
5+
"optionalDependencies": true,
6+
"peerDependencies": true
7+
}],
8+
"env": {
9+
"node": true,
10+
"browser": true
11+
}
12+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,3 +151,6 @@ node_modules
151151
scss-report.json
152152
docs/
153153
.jshint*
154+
example/build
155+
example/*.html
156+
dist/main.scss

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
22
sudo: true
33
node_js: 4
4+
script: npm run lint
45
deploy:
56
provider: script
67
script:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
CHANGELOG
22
=========
33

4+
## Version 0.4.0
5+
6+
:new: The `0.4.0` removes the static assets transforming this into a sass only library. We will be releasing icons, images and javascript as part of the (soon to be release) React component library.
7+
8+
_2016-09-06_
9+
10+
* New: source maps for sass files.
11+
* Fix: remove icons, svgs and JS files
12+
13+
414
## Version 0.3.1
515

616
_2016-08-30_

CONTRIBUTING.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# Contributing Guidelines
1+
# Issues
2+
3+
If you encounter an issue with this sample app, you are welcome to submit a bug report. Before that, please search for similar issues. It's possible somebody has encountered this issue already.
4+
5+
# Pull Requests
6+
7+
If you want to contribute to the repository, here's a quick guide:
8+
9+
1. Fork the repo
10+
1. Develop your code changes
11+
1. Ensure `eslint` is happy: `npm run lint`
12+
1. Commit your changes
13+
1. Push to your fork and submit a pull request
214

315
## Publishing a Github Page
416

README.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,14 @@ The path of the icon-fonts must be relative to the path of the compiled css file
4141

4242
You will also need to make sure to load the paths of your `node_modules` directory into your Sass configurations, so that the library can reference its npm dependencies properly.
4343

44-
The javascript of this library relies on `JQuery 2.*.*` and above. Make sure it is
45-
included before this library.
46-
4744
## Directory Structure
4845

4946
```none
5047
.
51-
52-
└── dist
53-
   ├── _watson-developer-cloud-ui-components.scss // Compiled Sass
54-
   ├── icons
55-
   │   ├── link.svg
56-
   │   └── reset.svg
57-
   ├── watson-developer-cloud-ui-components.css // Compiled css
58-
   ├── watson-developer-cloud-ui-components.js
59-
   ├── watson-developer-cloud-ui-components.min.css
60-
   └── watson-developer-cloud-ui-components.min.js
48+
└─ dist
49+
├── _watson-developer-cloud-ui-components.scss // Compiled Sass
50+
├── watson-developer-cloud-ui-components.css // Compiled css
51+
└── watson-developer-cloud-ui-components.min.css
6152
```
6253

6354
## Credits

RELEASES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ pip install bumpversion
1212
### 2. Doing a release
1313

1414
- [ ] Commit all the local changes
15-
- [ ] Run `npm run dist`
16-
- [ ] Commit the changes in `dist`
15+
- [ ] Run `npm run compile`
16+
- [ ] Commit the changes
1717
- [ ] Use `bumpversion` to update the version and commit the changes
1818

1919
```sh

config.js

Lines changed: 0 additions & 32 deletions
This file was deleted.

dist/icons/link.svg

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)