Skip to content

Instantly share code, notes, and snippets.

@esbb48
esbb48 / Fastfile
Last active August 26, 2021 09:38
使用 Fastlane自動打包部署到 Firebase App Distribution
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
export default function todos(state = initialState, action) {
switch (action.type) {
case ADD_TODO:
return [
{
id: state.reduce((maxId, todo) => Math.max(todo.id, maxId), -1) + 1,
completed: false,
text: action.text
},
...state
// path in /IonicMaterialDesign-0/www/js/app.js
.state('app.integration', {
url: "/integration",
params:{
isAnimated:false
},
cache: false,
views: {
'menuContent': {