Socket
Socket
Sign inDemoInstall

vue-lunar-full-calendar

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.0 to 1.3.1

lib/LunarFullCalendar.min.js.LICENSE

2

build/webpack.components.conf.js

@@ -14,3 +14,3 @@ const webpack = require('webpack')

'vue-lunar-fullcalendar v' + version + '\n' +
'(c) ' + new Date().getFullYear() + ' h j <https://a306916069.github.io> \n' +
'(c) ' + new Date().getFullYear() + ' h j <https://hjdev.github.io> \n' +
'@license MIT'

@@ -17,0 +17,0 @@

{
"name": "vue-lunar-full-calendar",
"version": "1.3.0",
"description": "lunar-vue-full-calendar",
"version": "1.3.1",
"description": "vue-fulcalendar",
"author": "hj",

@@ -31,3 +31,3 @@ "main": "lib/LunarFullCalendar.min.js",

"dependencies": {
"jquery": "^3.3.1",
"jquery": "^3.4.1",
"lodash.defaultsdeep": "^4.6.1",

@@ -51,9 +51,9 @@ "moment": "^2.22.2"

"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^4.0.1",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"css-loader": "^0.28.11",
"eslint": "^4.15.0",
"css-loader": "^3.2.0",
"eslint": "^6.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.2.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.7.0",

@@ -63,3 +63,3 @@ "eslint-plugin-node": "^5.2.0",

"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"eslint-plugin-vue": "^6.0.1",
"file-loader": "^1.1.11",

@@ -76,3 +76,3 @@ "friendly-errors-webpack-plugin": "^1.6.1",

"portfinder": "^1.0.25",
"postcss": "^7.0.21",
"postcss": "^7.0.23",
"postcss-import": "^11.0.0",

@@ -83,3 +83,3 @@ "postcss-loader": "^2.1.6",

"rimraf": "^2.6.0",
"sass": "^1.23.3",
"sass": "^1.23.7",
"sass-loader": "^7.1.0",

@@ -89,2 +89,3 @@ "semver": "^5.3.0",

"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.3.1",
"url-loader": "^0.5.9",

@@ -105,8 +106,8 @@ "vue": "^2.5.2",

"type": "git",
"url": "git+https://github.com/a306916069/vue-lunar-fullcalendar.git"
"url": "git+https://github.com/hjdev/vue-lunar-fullcalendar.git"
},
"bugs": {
"url": "https://github.com/a306916069/vue-lunar-fullcalendar/issues"
"url": "https://github.com/hjdev/vue-lunar-fullcalendar/issues"
},
"homepage": "https://github.com/a306916069/vue-lunar-fullcalendar#readme",
"homepage": "https://github.com/hjdev/vue-lunar-fullcalendar#readme",
"engines": {

@@ -113,0 +114,0 @@ "node": ">= 6.0.0",

@@ -1,4 +0,5 @@

## vue-lunar-full-calendar
## [vue-lunar-full-calendar](https://hjdev.github.io/vue-lunar-fullcalendar)
[![NPM version](https://img.shields.io/badge/npm-v1.3.0-green.svg)](https://www.npmjs.com/package/vue-lunar-full-calendar)
[![NPM downloads](https://img.shields.io/badge/downloads-vue--lunar--full--calendar-green.svg)](https://www.npmjs.com/package/vue-lunar-full-calendar)

@@ -8,3 +9,2 @@ ## Image and demo

```
增加中国农历、24节气和节假日的功能
a vue component for lunar fullcalendar. Uses Moment.js for date operations.

@@ -14,4 +14,4 @@ Increase the functions of Chinese lunar calendar, 24 solar terms and holidays

[Simple Live Demo](https://a306916069.github.io/vue-lunar-fullcalendar)
![Image text](https://raw.githubusercontent.com/a306916069/vue-lunar-fullcalendar/master/src/assets/img/lunar.png)
[Simple Live Demo](https://hjdev.github.io/vue-lunar-fullcalendar)
![Image text](https://raw.githubusercontent.com/hjdev/vue-lunar-fullcalendar/master/src/assets/img/lunar.png)

@@ -26,4 +26,4 @@ ## Installation

//main.js
import LunarFullCalendar from 'vue-lunar-full-calendar'
Vue.use(LunarFullCalendar)
import LunarFullCalendar from "vue-lunar-full-calendar";
Vue.use(LunarFullCalendar);
```

@@ -35,3 +35,3 @@

// index.vue
import { LunarFullCalendar } from 'vue-lunar-full-calendar'
import { LunarFullCalendar } from "vue-lunar-full-calendar";
export default {

@@ -41,3 +41,3 @@ components: {

}
}
};
```

@@ -47,7 +47,7 @@

1、window.lunar(date) 能够为你获取某一时段的农历等信息
1、window.lunar(date)
Use vue-lunar-full-calendar , You can use one function to get the date of a certain day.
2、config 中添加了一个 lunarCalendar 控制是否显示中国农历、显示的为 true,隐藏为 flase,默认为 true
2、lunarCalendar (default: true)

@@ -66,3 +66,3 @@ You can pass any custom options through to fullcalendar by using the `config` prop.

config: {
lunarCalendar: true // 控制是否显示中国农历、显示的为true,隐藏为flase,默认为true(Control whether the Chinese calendar shows true, unrealistic flase, default true.)
lunarCalendar: true //(Control whether the Chinese calendar shows true, unrealistic flase, default true.)
},

@@ -77,4 +77,3 @@ }

![Image text](https://raw.githubusercontent.com/a306916069/vue-lunar-fullcalendar/master/src/assets/img/window.lunar.png)
![Image text](https://upload-images.jianshu.io/upload_images/9978622-89ee65744e9cf2f6.png?imageMogr2/auto-orient/strip|imageView2/2/format/webp)
![Image text](https://raw.githubusercontent.com/hjdev/vue-lunar-fullcalendar/master/src/assets/img/window.lunar.png)

@@ -87,4 +86,4 @@ ## API document

关于基于 vue2 依赖包的例子(I have created a simple Vue 2 webpack application as an example/playground)
https://github.com/a306916069/vue-lunar-fullcalendar
I have created a simple Vue 2 webpack application as an example/playground
https://github.com/hjdev/vue-lunar-fullcalendar

@@ -91,0 +90,0 @@ ## Basic Usage

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc