Skip to content

Commit

Permalink
feat: pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterliu1003 committed Jun 13, 2021
1 parent 2aa5e6f commit abf3223
Show file tree
Hide file tree
Showing 16 changed files with 19,427 additions and 19,680 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Expand Up @@ -2,7 +2,13 @@ language: node_js
node_js:
- '12'
cache:
npm: false
directories:
- node_modules
- "~/.pnpm-store"
before_install:
- curl -f https://get.pnpm.io/v6.7.js | node - add --global pnpm@6
- pnpm config set store-dir ~/.pnpm-store
install:
- pnpm install
script:
- yarn coveralls
- pnpm coveralls
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -51,24 +51,24 @@ You can create a [higher-order component](https://vue-final-modal.org/examples/r
git clone https://github.com/vue-final/vue-final-modal.git

# Run linter
yarn lint
pnpm lint

# Run unit test
yarn test
pnpm test

# Build library
yarn
yarn build
pnpm
pnpm build

# Run examples
cd examples
yarn
yarn dev
pnpm
pnpm dev

# Run docs
cd docs
yarn
yarn dev
pnpm
pnpm dev
```

## **Contribution**
Expand Down
2 changes: 1 addition & 1 deletion dist/VueFinalModal.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/VueFinalModal.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/VueFinalModal.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/VueFinalModal.umd.js.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions docs/content/en/index.md
Expand Up @@ -61,24 +61,24 @@ You can create a [higher-order component](/examples/recommend) easily and can cu
git clone https://github.com/vue-final/vue-final-modal.git

# Run linter
yarn lint
pnpm lint

# Run unit test
yarn test
pnpm test

# Build library
yarn
yarn build
pnpm
pnpm build

# Run examples
cd examples
yarn
yarn dev
pnpm
pnpm dev

# Run docs
cd docs
yarn
yarn dev
pnpm
pnpm dev
```

## **Contribution**
Expand Down
14 changes: 7 additions & 7 deletions docs/content/zh-Hant/index.md
Expand Up @@ -75,21 +75,21 @@ version: 2
git clone https://github.com/vue-final/vue-final-modal.git

# Run linter
yarn lint
pnpm lint

# Build library
yarn
yarn build
pnpm
pnpm build

# Run examples
cd examples
yarn
yarn dev
pnpm
pnpm dev

# Run docs
cd docs
yarn
yarn dev
pnpm
pnpm dev
```

## **貢獻**
Expand Down

0 comments on commit abf3223

Please sign in to comment.