Release v0.4.2
This commit is contained in:
parent
f66b6161b2
commit
6cd80f3f0d
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'DoricCore'
|
||||
s.version = '0.4.0'
|
||||
s.version = '0.4.2'
|
||||
s.summary = 'Doric iOS SDK'
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'DoricDevkit'
|
||||
s.version = '0.4.0'
|
||||
s.version = '0.4.2'
|
||||
s.summary = 'Doric iOS Devkit'
|
||||
|
||||
s.description = <<-DESC
|
||||
|
@ -1 +1 @@
|
||||
version=0.4.0
|
||||
version=0.4.2
|
||||
|
@ -1 +1 @@
|
||||
0.4.0
|
||||
0.4.2
|
||||
|
@ -1705,7 +1705,7 @@ var doric = (function (exports) {
|
||||
(module.exports = function (key, value) {
|
||||
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
|
||||
})('versions', []).push({
|
||||
version: '3.6.4',
|
||||
version: '3.6.5',
|
||||
mode: 'global',
|
||||
copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
|
||||
});
|
||||
@ -6489,7 +6489,13 @@ var doric = (function (exports) {
|
||||
defer = functionBindContext(port.postMessage, port, 1);
|
||||
// Browsers with postMessage, skip WebWorkers
|
||||
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
|
||||
} else if (global_1.addEventListener && typeof postMessage == 'function' && !global_1.importScripts && !fails(post)) {
|
||||
} else if (
|
||||
global_1.addEventListener &&
|
||||
typeof postMessage == 'function' &&
|
||||
!global_1.importScripts &&
|
||||
!fails(post) &&
|
||||
location.protocol !== 'file:'
|
||||
) {
|
||||
defer = post;
|
||||
global_1.addEventListener('message', listener, false);
|
||||
// IE8-
|
||||
@ -9861,7 +9867,7 @@ var doric = (function (exports) {
|
||||
var INVALID_PORT = 'Invalid port';
|
||||
|
||||
var ALPHA = /[A-Za-z]/;
|
||||
var ALPHANUMERIC = /[\d+\-.A-Za-z]/;
|
||||
var ALPHANUMERIC = /[\d+-.A-Za-z]/;
|
||||
var DIGIT = /\d/;
|
||||
var HEX_START = /^(0x|0X)/;
|
||||
var OCT = /^[0-7]+$/;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "doric",
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.2",
|
||||
"description": "The JS Framework of Doric",
|
||||
"main": "bundle/doric-vm.js",
|
||||
"types": "index.d.ts",
|
||||
|
2
doric-web/dist/index.js
vendored
2
doric-web/dist/index.js
vendored
@ -4055,7 +4055,7 @@ return __module.exports;
|
||||
var doric_web = (function (exports, axios, sandbox) {
|
||||
'use strict';
|
||||
|
||||
axios = axios && axios.hasOwnProperty('default') ? axios['default'] : axios;
|
||||
axios = axios && Object.prototype.hasOwnProperty.call(axios, 'default') ? axios['default'] : axios;
|
||||
|
||||
class DoricPlugin {
|
||||
constructor(context) {
|
||||
|
2
doric-web/dist/index.js.map
vendored
2
doric-web/dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "doric-web",
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.2",
|
||||
"description": "Doric library for Web",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
Reference in New Issue
Block a user