Skip to content

Commit 482365b

Browse files
authored
Update package description (#25)
* Update README * Update package description * Update README.md
1 parent f15f2d4 commit 482365b

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@ember/string
22
==============================================================================
33

4-
[Short description of the addon.]
4+
A set of utilities to transform strings extracted from the core of Ember.
55

66

77
Compatibility
@@ -15,15 +15,29 @@ Installation
1515
------------------------------------------------------------------------------
1616

1717
```
18-
ember install my-addon
18+
ember install @ember/string
1919
```
2020

2121

2222
Usage
2323
------------------------------------------------------------------------------
2424

25-
[Longer description of how to use the addon in apps.]
25+
This package provides the following imports:
26+
27+
```javascript
28+
import {
29+
camelize,
30+
capitalize,
31+
classify,
32+
dasherize,
33+
decamelize,
34+
underscore
35+
w,
36+
loc,
37+
} from 'ember/string'
38+
```
2639

40+
For more documentation, consult https://emberjs.com/api/ember/release/classes/String.
2741

2842
License
2943
------------------------------------------------------------------------------

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ember/string",
33
"version": "0.1.0",
4-
"description": "The default blueprint for ember-cli addons.",
4+
"description": "A set of utilities to transform strings",
55
"keywords": [
66
"ember-addon"
77
],
@@ -58,4 +58,4 @@
5858
"ember-addon": {
5959
"configPath": "tests/dummy/config"
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)