Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules/
test/lib/
test/bundle.js
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
with:
node-version: 14
- run: npm i
- run: npx bower install
- run: npm run test:browser
- run: npm run test:spawn
env:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules/
npm-debug.log
test/lib/
test/bundle.js*
tmp/
.env
Expand Down
30 changes: 0 additions & 30 deletions bower.json

This file was deleted.

2 changes: 1 addition & 1 deletion browser/http/sendBeacon.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const querystringify = require('../../string/querystringify');
const querystringify = require('../../string/querystringify.js');

module.exports = (url, data = null, contentType = 'text/plain') => {

Expand Down
2 changes: 1 addition & 1 deletion http/sendBeacon.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

const http = require('http');
const https = require('https');
const querystringify = require('../string/querystringify');
const querystringify = require('../string/querystringify.js');

module.exports = (url, data) => {

Expand Down
9 changes: 4 additions & 5 deletions test/bundle.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Tricks Bundle Test</title>
<script src="lib/mocha/mocha.js"></script>
<script src="lib/Blob.js/Blob.js"></script>
<script src="./lib/expect.js/index.js"></script>
<script src="./lib/sinonjs/sinon.js"></script>
<link rel="stylesheet" href="./lib/mocha/mocha.css"/>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/expect.js/index.js"></script>
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css"/>

<script src="mocha_config.js"></script>
<script src="bundle.js"></script>
Expand Down
10 changes: 0 additions & 10 deletions test/index.html

This file was deleted.