taro-mall icon indicating copy to clipboard operation
taro-mall copied to clipboard

一个项目的架构,包括设计/前端/管理后台/后端/k8s集群架构,欢迎Star,欢迎Fork

Results 24 taro-mall issues
Sort by recently updated
recently updated
newest added

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 3.1.0 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) v5.1.1 Bug Fixes unescape exclamation mark (#26) (a98874f) v5.1.0 Features add...

dependencies

Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.8.2 to 4.16.6. Changelog Sourced from browserslist's changelog. 4.16.6 Fixed npm-shrinkwrap.json support in --update-db (by Geoff Newman). 4.16.5 Fixed unsafe RegExp (by Yeting Li). 4.16.4 Fixed unsafe...

dependencies

一、安装kubelet kubeadm kubectl ```bash #在能联网的服务器上 #1、安装yumdownloader yum install yum-utils -y 设置yum源 curl -o /etc/yum.repos.d/Centos-7.repo http://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/docker-ce.repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo cat > /etc/hosts cat > /etc/hosts # 只在 worker 节点执行 #...

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.20. Commits ded9bc6 Bump to v4.17.20. 63150ef Documentation fixes. 00f0f62 test.js: Remove trailing comma. 846e434 Temporarily use a custom fork of lodash-cli. 5d046f3 Re-enable Travis...

dependencies

Bumps [minimist](https://github.com/substack/minimist) from 0.0.8 to 1.2.5. Commits aeb3e27 1.2.5 278677b 1.2.4 4cf1354 security notice 1043d21 additional test for constructor prototype pollution 6457d74 1.2.3 38a4d1c even more aggressive checks for protocol...

dependencies

一、创建docker-compose.yml文件 ```yml version: '3.7' services: master-mongo: image: mongo container_name: master-mongo ports: - "27017:27017" volumes: - ./data/master:/data/db command: mongod --dbpath /data/db --replSet testSet --oplogSize 128 secondary-mongo: image: mongo container_name: secondary-mongo ports:...

**** 新建一个文件命名为webstorm.config.js存放到config目录即可 **** Preferences | Languages & Frameworks | JavaScript | Webpack选择webstorm.config.js ```javascript 'use strict'; const path = require('path'); module.exports = { context: path.resolve(__dirname, './'), resolve: { extensions: ['.js', '.vue',...