https://github.com/meepobrother/meepo-picker
选择器相关
https://github.com/meepobrother/meepo-picker
angular meepo picker
Last synced: 3 months ago
JSON representation
选择器相关
- Host: GitHub
- URL: https://github.com/meepobrother/meepo-picker
- Owner: meepobrother
- License: mit
- Created: 2017-12-26T02:57:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-15T03:54:02.000Z (over 7 years ago)
- Last Synced: 2025-02-24T19:02:53.381Z (4 months ago)
- Topics: angular, meepo, picker
- Language: JavaScript
- Homepage: https://meepo.com.cn
- Size: 314 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## imeepos angular template
```sh
git remote add origin https://github.com/meepobrother/imeepos-ng-template.git
git push -u origin master
```### 用法
```sh
git clone https://github.com/meepobrother/imeepos-ng-template.git my-app
cd my-app
yarn
// 或者
npm install
```### 发布包到npm
```ts
// 删除mac自带后缀文件
find ./ -name ".DS_Store" | xargs rm -rf
// 1: 更改package.json中的name为要发布的名字
npm run build && npm publish
```### 使用发布的包
```ts
npm install --save 包名
``````ts
import { 模块 } from {包名}
``````ts
"rollup": "^0.43.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-includepaths": "0.2.2",
"rollup-plugin-node-resolve": "^3.0.0"
```- demo演示
```
yarn demo
```- 后台相关
```ts
// 启动后台服务
yarn server
// 重启后台服务
yarn reload
// 清除进程
yarn delete
```