Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryifytest committed May 24, 2022
1 parent 303bef5 commit a2ee410
Show file tree
Hide file tree
Showing 6 changed files with 1,541 additions and 1,602 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog
## 4.0.8 | 2022.05.24
- Fix `path-browser` export error
## 4.0.9 | 2022.05.24
- Fix `path-browserify` export error

## 4.0.6 | 2022.04.14
- Fix dependency error position
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import vueQr from 'vue-qr/src/packages/vue-qr.vue'
**In template**

```html
<vue-qr text="Hello world!"></vue-qr>
<vue-qr :bgSrc='src' :logoSrc="src2" text="Hello world!" :size="200"></vue-qr>
<vue-qr text="Hello world!" :callback="test" qid="testid"></vue-qr>
```
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-qr",
"version": "4.0.8",
"version": "4.0.9",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --host 0.0.0.0",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
Expand All @@ -16,6 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-stage-0": "^7.8.3",
Expand All @@ -30,8 +31,7 @@
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"@babel/plugin-proposal-class-properties": "^7.16.7"
"webpack-dev-server": "^3.11.0"
},
"description": "The Vue 2.x component of Awesome-qr.js",
"keywords": [
Expand All @@ -49,7 +49,6 @@
"dependencies": {
"glob": "^8.0.1",
"js-binary-schema-parser": "^2.0.2",
"path-browserify": "^1.0.1",
"simple-get": "^4.0.1",
"string-split-by": "^1.0.0"
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/skia-canvas-lib/lib/io.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

// const { basename, extname } = require("path");
import { basename, extname } from "../../path-browser/index.js";
import { basename, extname } from "../../path-browserify/index.js";
//
// Mime type <-> File extension mappings
//
Expand Down
Loading

0 comments on commit a2ee410

Please sign in to comment.