Skip to content

Commit

Permalink
Merge pull request #66 from bigopon/master
Browse files Browse the repository at this point in the history
chore: test build
  • Loading branch information
EisenbergEffect authored Nov 6, 2020
2 parents b0edca8 + 804d15e commit 029952b
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-metadata",
"version": "1.0.7",
"version": "1.0.8",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down
4 changes: 4 additions & 0 deletions dist/amd/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) {
if (origin === undefined) {
_aureliaPal.PLATFORM.eachModule(function (key, value) {
if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {
var isBrowserWindow = typeof window !== 'undefined' && value === window;
for (var name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') {
continue;
}
try {
var exp = value[name];
if (exp === fn) {
Expand Down
2 changes: 2 additions & 0 deletions dist/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ export class Origin {
if (origin === undefined) {
PLATFORM.eachModule((key, value) => {
if (typeof value === 'object') {
let isBrowserWindow = typeof window !== 'undefined' && value === window;
for (let name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') { continue; } // Avoid warning to console
try {
let exp = value[name];
if (exp === fn) {
Expand Down
4 changes: 4 additions & 0 deletions dist/commonjs/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ var Origin = exports.Origin = function () {
if (origin === undefined) {
_aureliaPal.PLATFORM.eachModule(function (key, value) {
if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {
var isBrowserWindow = typeof window !== 'undefined' && value === window;
for (var name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') {
continue;
}
try {
var exp = value[name];
if (exp === fn) {
Expand Down
4 changes: 4 additions & 0 deletions dist/es2015/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ export let Origin = class Origin {
if (origin === undefined) {
PLATFORM.eachModule((key, value) => {
if (typeof value === 'object') {
let isBrowserWindow = typeof window !== 'undefined' && value === window;
for (let name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') {
continue;
}
try {
let exp = value[name];
if (exp === fn) {
Expand Down
4 changes: 4 additions & 0 deletions dist/native-modules/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ export var Origin = function () {
if (origin === undefined) {
PLATFORM.eachModule(function (key, value) {
if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {
var isBrowserWindow = typeof window !== 'undefined' && value === window;
for (var name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') {
continue;
}
try {
var exp = value[name];
if (exp === fn) {
Expand Down
4 changes: 4 additions & 0 deletions dist/system/aurelia-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,11 @@ System.register(['aurelia-pal'], function (_export, _context) {
if (origin === undefined) {
PLATFORM.eachModule(function (key, value) {
if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {
var isBrowserWindow = typeof window !== 'undefined' && value === window;
for (var name in value) {
if (isBrowserWindow && name === 'webkitStorageInfo') {
continue;
}
try {
var exp = value[name];
if (exp === fn) {
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="1.0.8"></a>
## [1.0.8](https://github.com/aurelia/metadata/compare/1.0.6...1.0.8) (2020-11-05)



<a name="1.0.7"></a>
## [1.0.7](https://github.com/aurelia/metadata/compare/1.0.5...1.0.7) (2019-03-26)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-metadata",
"version": "1.0.7",
"version": "1.0.8",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 029952b

Please sign in to comment.