Skip to content

Commit 73beed7

Browse files
Rename tinyQuery.js to tiny-query-string.js
1 parent 0952962 commit 73beed7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "tiny-query-string",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A really tiny URL query string utility",
5-
"main": "tinyQuery.js",
5+
"main": "tiny-query-string.js",
66
"scripts": {
77
"test": "./node_modules/.bin/mocha test/index.js",
8-
"build": "./node_modules/.bin/uglifyjs tinyQuery.js -o tinyQuery.min.js -m"
8+
"build": "./node_modules/.bin/uglifyjs tiny-query-string.js -o tiny-query-string.min.js -m"
99
},
1010
"repository": {
1111
"type": "git",
@@ -26,7 +26,7 @@
2626
"bugs": {
2727
"url": "https://github.com/richardwestenra/tiny-query-string/issues"
2828
},
29-
"homepage": "http://richardwestenra.com/tiny-query-string/",
29+
"homepage": "http://github.com/richardwestenra/tiny-query-string/",
3030
"devDependencies": {
3131
"chai": "^3.5.0",
3232
"mocha": "^3.1.2",

test/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
const qs = require('../tinyQuery');
1+
const qs = require('../tiny-query-string');
22
const { assert, expect } = require('chai');
33

44
const encodedString = 'http%3A%2F%2Fwww.example.com%2Fpage%2F%3Ff%C3%B6o%3Dbar%20%C3%AFs%20%C3%A1%20pr%C3%A9tty%20c%C3%B6%C3%B6l%20w%C4%93bsite!';
55
const decodedString = 'http://www.example.com/page/?föo=bar ïs á prétty cööl wēbsite!';
66

7-
describe('TinyQueryString', function(){
7+
describe('tiny-query-string', function(){
88

99
describe('getOne', function(){
1010
it('should retrieve a named value from a query string', function() {

tinyQuery.js tiny-query-string.js

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)