joplin-plugin-my-calendar 1.2.6 → 1.2.7

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.2.7](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.6...v1.2.7) (2026-02-02)
6
+
7
+
8
+ ### 🐛 Bug Fixes
9
+
10
+ * ensure publish folder is included in npm package ([213f287](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/commit/213f28721fbd041804e96351bb6b2dbf8d04e28c))
11
+
5
12
  ### [1.2.6](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.5...v1.2.6) (2026-02-02)
6
13
 
7
14
  ### [1.2.5](https://github.com/volodymyroliinyk/joplin-plugin-my-calendar/compare/v1.2.4...v1.2.5) (2026-02-01)
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 1,
3
3
  "id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
4
4
  "app_min_version": "3.3",
5
- "version": "1.2.6",
5
+ "version": "1.2.7",
6
6
  "name": "My Calendar",
7
7
  "description": "Calendar view from notes with event syntax",
8
8
  "author": "Volodymyr Oliinyk",
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 1,
3
3
  "id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
4
4
  "app_min_version": "3.3",
5
- "version": "1.2.6",
5
+ "version": "1.2.7",
6
6
  "name": "My Calendar",
7
7
  "description": "Calendar view from notes with event syntax",
8
8
  "author": "Volodymyr Oliinyk",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joplin-plugin-my-calendar",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Calendar plugin for Joplin",
5
5
  "author": "Volodymyr Oliinyk",
6
6
  "license": "MIT",
@@ -11,14 +11,15 @@
11
11
  },
12
12
  "main": "dist/index.js",
13
13
  "scripts": {
14
- "clean": "rm -rf dist node_modules package-lock.json",
15
14
  "build": "webpack",
16
- "pack": "npm run build && cd dist && tar --format=ustar -cf ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.jpl manifest.json index.js ui && cp manifest.json ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.json",
17
- "dist": "npm run pack",
15
+ "build:jpl": "npm run build && mkdir -p publish && cd dist && tar --format=ustar -cf ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.jpl manifest.json index.js ui && cp manifest.json ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.json",
16
+ "prepack": "npm run build:jpl",
17
+ "prepare": "husky",
18
+ "clean": "rm -rf dist node_modules package-lock.json",
19
+ "dist": "npm run build:jpl",
18
20
  "test": "(TZ=UTC jest && echo \"$(date +%s)|PASS\" > .test-status) || (echo \"$(date +%s)|FAIL\" > .test-status && exit 1)",
19
21
  "test:watch": "jest --watch",
20
22
  "lint": "eslint .",
21
- "prepare": "husky && npm run dist",
22
23
  "release": "standard-version",
23
24
  "changelog:preview": "bash scripts/preview-changelog.sh"
24
25
  },
@@ -1,5 +1,6 @@
1
- # Ignore everything in this directory
1
+ # Ignore everything
2
2
  *
3
3
 
4
- # Except this file (keeps the directory in git)
4
+ # Except these
5
5
  !.gitignore
6
+ !.npmignore
@@ -0,0 +1,2 @@
1
+ # Allow everything in this folder for NPM
2
+ !*
@@ -0,0 +1,29 @@
1
+ {
2
+ "manifest_version": 1,
3
+ "id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
4
+ "app_min_version": "3.3",
5
+ "version": "1.2.7",
6
+ "name": "My Calendar",
7
+ "description": "Calendar view from notes with event syntax",
8
+ "author": "Volodymyr Oliinyk",
9
+ "homepage_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
10
+ "repository_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
11
+ "keywords": [
12
+ "joplin-plugin",
13
+ "joplin",
14
+ "plugin",
15
+ "calendar",
16
+ "event",
17
+ "my calendar",
18
+ "ics",
19
+ "import",
20
+ "ical"
21
+ ],
22
+ "platforms": [
23
+ "desktop",
24
+ "mobile"
25
+ ],
26
+ "permissions": [
27
+ "notes"
28
+ ]
29
+ }