Skip to content

Commit abd847c

Browse files
committed
feat: add bower
1 parent 40cdc5d commit abd847c

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

bower.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "ultimate-string-replace",
3+
"description": "JS module to improve string.prototype.replace",
4+
"main": "./build/bundle.js",
5+
"authors": [
6+
"Víctor Lara Ortega <victorlara@outlook.com>"
7+
],
8+
"license": "MIT",
9+
"keywords": [
10+
"string",
11+
"es6",
12+
"replace"
13+
],
14+
"homepage": "https://github.com/vlaraort/ultimate-string-replace",
15+
"ignore": [
16+
"**/.*",
17+
"node_modules",
18+
"bower_components",
19+
"test",
20+
"tests"
21+
]
22+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"description": "JS module to improve string.prototype.replace",
55
"main": "./build/bundle.js",
6-
"module": "ultimate-string-replace.js",
6+
"module": "/src/ultimate-string-replace.js",
77
"scripts": {
88
"build": "webpack",
99
"test": "nyc mocha --require babel-core/register",
@@ -16,7 +16,7 @@
1616
"coverage:codecov": "codecov"
1717
},
1818
"author": "Víctor Lara Ortega <victorlara@outlook.com>",
19-
"license": "ISC",
19+
"license": "MIT",
2020
"devDependencies": {
2121
"babel-core": "^6.26.3",
2222
"babel-preset-es2015": "^6.24.1",
File renamed without changes.

test/ultimate-string-replace.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect } from 'chai';
22
import { it, describe } from 'mocha';
3-
import ultimateStringReplace from '../ultimate-string-replace';
3+
import ultimateStringReplace from '../src/ultimate-string-replace';
44

55
describe('string-replace', () => {
66
it('should wrap case - insensitive', () => {

0 commit comments

Comments
 (0)