Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
fix: 修复 windows watch 模式生命周期不生效的问题 (#930)
Browse files Browse the repository at this point in the history
* fix: 修复 windows watch 模式生命周期不生效的问题

* fix: 修复 watch 多执行一次的问题

* chore: 判断写反了

* test: 修正测试

* chore: remax-macro 也需要 winPath

* fix: skip 未重置

Co-authored-by: 大宝 <noyobo@gmail.com>
  • Loading branch information
Darmody and noyobo authored May 12, 2020
1 parent a706082 commit 29ca6e6
Show file tree
Hide file tree
Showing 36 changed files with 7,700 additions and 57 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
page {
background: #eee;
}

112 changes: 112 additions & 0 deletions packages/remax-cli/src/__tests__/fixtures/lifeCycle/expected/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
require('./runtime.js');
require('./remax-vendors.js');
(my["webpackJsonp"] = my["webpackJsonp"] || []).push([[1],{

/***/ 0:
/***/ (function(module, exports, __webpack_require__) {

module.exports = __webpack_require__(1);


/***/ }),

/***/ 1:
/***/ (function(module, __webpack_exports__, __webpack_require__) {

"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _remax_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
/* harmony import */ var _app_css__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(40);
/* harmony import */ var _app_css__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_app_css__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(14);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__);
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }

function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }

function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }

function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function () { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }

function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }

function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }

function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }

function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }





var _App = /*#__PURE__*/function (_React$Component) {
_inherits(_App, _React$Component);

var _super = _createSuper(_App);

function _App() {
_classCallCheck(this, _App);

return _super.apply(this, arguments);
}

_createClass(_App, [{
key: "onShow",
value: function onShow() {
console.log('on show');
}
}, {
key: "onHide",
value: function onHide() {
console.log('on hide');
}
}, {
key: "render",
value: function render() {
return this.props.children;
}
}]);

return _App;
}(react__WEBPACK_IMPORTED_MODULE_2__["Component"]);

/* harmony default export */ __webpack_exports__["default"] = (App(Object(_remax_runtime__WEBPACK_IMPORTED_MODULE_0__["createAppConfig"])(_App)));

/***/ }),

/***/ 14:
/***/ (function(module, exports) {

module.exports = "react";

/***/ }),

/***/ 4:
/***/ (function(module, exports) {

module.exports = "react-reconciler";

/***/ }),

/***/ 40:
/***/ (function(module, exports, __webpack_require__) {

// extracted by mini-css-extract-plugin

/***/ }),

/***/ 6:
/***/ (function(module, exports) {

module.exports = "scheduler";

/***/ })

},[[0,0,2]]]);
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"pages": [
"pages/index",
"pages/classPage"
],
"window": {
"defaultTitle": "Ali App",
"titleBarColor": "#323239"
}
}
Loading

1 comment on commit 29ca6e6

@vercel
Copy link

@vercel vercel bot commented on 29ca6e6 May 12, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.