qmwts 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.test.js CHANGED
@@ -1,4 +1,4 @@
1
- const { isNumber } = require('./src/number-utils')
1
+ const { isNumber } = require('./src/utils/number-utils')
2
2
  test('asd', () => {
3
3
  expect(isNumber('fdsf')).toBe(false)
4
4
  })
package/index.ts CHANGED
@@ -1,6 +1,6 @@
1
- import NumberUtils from './src/number-utils'
1
+ import NumberUtils from './src/utils/number-utils'
2
2
 
3
- export default {
3
+ export {
4
4
  NumberUtils
5
5
  }
6
6
  // https://www.jianshu.com/p/8fa2c50720e4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qmwts",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "main": "index.ts",
6
6
  "scripts": {
File without changes