Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.
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
1 change: 1 addition & 0 deletions eddystone-url/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ The URL Scheme Prefix byte defines the identifier scheme, an optional prefix and
|1 | 0x01 | `https://www.`
|2 | 0x02 | `http://`
|3 | 0x03 | `https://`
|15 | 0xff | `wifi://`

### Eddystone-URL HTTP URL encoding

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
(() => {
'use strict';

Expand Down
18 changes: 9 additions & 9 deletions libraries/javascript/eddystone-advertising/gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ gulp.task('docs', () => {
.pipe(gulp.dest(''));
});

gulp.task('test', [
'test:docs',
'test:dependencies',
'test:browserify',
'test:style',
'test:unit']
);

gulp.task('browserify', () => {

return getBrowserifyPipe()
Expand Down Expand Up @@ -71,10 +63,18 @@ gulp.task('test:unit', () => {
.pipe(mocha({reporter: 'spec'}));
});

gulp.task('clean', ['test:chrome-os'], cb => {
gulp.task('clean', cb => {
del('temp/', cb);
});

gulp.task('test', gulp.series(
'test:docs',
'test:dependencies',
'test:browserify',
'test:style',
'test:unit')
);

function getJsDocPipe() {
return gulp.src('lib/*.js')
.pipe(concat('README.md'))
Expand Down
2 changes: 1 addition & 1 deletion libraries/javascript/eddystone-advertising/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"del": "^2.0.0",
"gulp": "^3.9.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.0",
"gulp-david": "^0.4.1",
"gulp-diff": "^1.0.0",
Expand Down