Release v0.4.2

This commit is contained in:
pengfei.zhou 2020-04-11 05:05:51 +00:00 committed by osborn
parent f66b6161b2
commit 6cd80f3f0d
10 changed files with 18 additions and 12 deletions

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'DoricCore' s.name = 'DoricCore'
s.version = '0.4.0' s.version = '0.4.2'
s.summary = 'Doric iOS SDK' s.summary = 'Doric iOS SDK'

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'DoricDevkit' s.name = 'DoricDevkit'
s.version = '0.4.0' s.version = '0.4.2'
s.summary = 'Doric iOS Devkit' s.summary = 'Doric iOS Devkit'
s.description = <<-DESC s.description = <<-DESC

View File

@ -1 +1 @@
version=0.4.0 version=0.4.2

View File

@ -1 +1 @@
0.4.0 0.4.2

View File

@ -1705,7 +1705,7 @@ var doric = (function (exports) {
(module.exports = function (key, value) { (module.exports = function (key, value) {
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {}); return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
})('versions', []).push({ })('versions', []).push({
version: '3.6.4', version: '3.6.5',
mode: 'global', mode: 'global',
copyright: '© 2020 Denis Pushkarev (zloirock.ru)' copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
}); });
@ -6489,7 +6489,13 @@ var doric = (function (exports) {
defer = functionBindContext(port.postMessage, port, 1); defer = functionBindContext(port.postMessage, port, 1);
// Browsers with postMessage, skip WebWorkers // Browsers with postMessage, skip WebWorkers
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object' // 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; defer = post;
global_1.addEventListener('message', listener, false); global_1.addEventListener('message', listener, false);
// IE8- // IE8-
@ -9861,7 +9867,7 @@ var doric = (function (exports) {
var INVALID_PORT = 'Invalid port'; var INVALID_PORT = 'Invalid port';
var ALPHA = /[A-Za-z]/; var ALPHA = /[A-Za-z]/;
var ALPHANUMERIC = /[\d+\-.A-Za-z]/; var ALPHANUMERIC = /[\d+-.A-Za-z]/;
var DIGIT = /\d/; var DIGIT = /\d/;
var HEX_START = /^(0x|0X)/; var HEX_START = /^(0x|0X)/;
var OCT = /^[0-7]+$/; var OCT = /^[0-7]+$/;

View File

@ -1,6 +1,6 @@
{ {
"name": "doric", "name": "doric",
"version": "0.4.0", "version": "0.4.2",
"description": "The JS Framework of Doric", "description": "The JS Framework of Doric",
"main": "bundle/doric-vm.js", "main": "bundle/doric-vm.js",
"types": "index.d.ts", "types": "index.d.ts",

View File

@ -4055,7 +4055,7 @@ return __module.exports;
var doric_web = (function (exports, axios, sandbox) { var doric_web = (function (exports, axios, sandbox) {
'use strict'; 'use strict';
axios = axios && axios.hasOwnProperty('default') ? axios['default'] : axios; axios = axios && Object.prototype.hasOwnProperty.call(axios, 'default') ? axios['default'] : axios;
class DoricPlugin { class DoricPlugin {
constructor(context) { constructor(context) {

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "doric-web", "name": "doric-web",
"version": "0.4.0", "version": "0.4.2",
"description": "Doric library for Web", "description": "Doric library for Web",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {

View File

@ -1 +1 @@
0.4.0 0.4.2