svelte-entitlement 1.2.39 → 1.2.40

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -1
  3. package/package.json +24 -16
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2022 by arlac77
1
+ Copyright (c) 2020-2023 by arlac77
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
package/README.md CHANGED
@@ -3,11 +3,12 @@
3
3
  [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
4
4
  [![Open Bundle](https://bundlejs.com/badge-light.svg)](https://bundlejs.com/?q=svelte-entitlement)
5
5
  [![downloads](http://img.shields.io/npm/dm/svelte-entitlement.svg?style=flat-square)](https://npmjs.org/package/svelte-entitlement)
6
- [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/arlac77/svelte-entitlement.git)
6
+ [![GitHub Issues](https://img.shields.io/github/issues/arlac77/svelte-entitlement.svg?style=flat-square)](https://github.com/arlac77/svelte-entitlement/issues)
7
7
  [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fsvelte-entitlement%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/svelte-entitlement/goto)
8
8
  [![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
9
9
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
10
10
  [![Known Vulnerabilities](https://snyk.io/test/github/arlac77/svelte-entitlement/badge.svg)](https://snyk.io/test/github/arlac77/svelte-entitlement)
11
+ [![Coverage Status](https://coveralls.io/repos/arlac77/svelte-entitlement/badge.svg)](https://coveralls.io/github/arlac77/svelte-entitlement)
11
12
  [![Tested with TestCafe](https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg)](https://github.com/DevExpress/testcafe)
12
13
 
13
14
  # svelte-entitlement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-entitlement",
3
- "version": "1.2.39",
3
+ "version": "1.2.40",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -11,6 +11,13 @@
11
11
  "vite",
12
12
  "web"
13
13
  ],
14
+ "contributors": [
15
+ {
16
+ "name": "Markus Felten",
17
+ "email": "markus.felten@gmx.de"
18
+ }
19
+ ],
20
+ "license": "BSD-2-Clause",
14
21
  "scripts": {
15
22
  "prepare": "vite build",
16
23
  "start": "vite",
@@ -30,23 +37,23 @@
30
37
  "@semantic-release/commit-analyzer": "^9.0.2",
31
38
  "@semantic-release/exec": "^6.0.3",
32
39
  "@semantic-release/release-notes-generator": "^10.0.3",
33
- "@sveltejs/vite-plugin-svelte": "^1.4.0",
34
- "ava": "^5.1.0",
40
+ "@sveltejs/vite-plugin-svelte": "^2.0.2",
41
+ "ava": "^5.1.1",
35
42
  "c8": "^7.12.0",
36
- "documentation": "^14.0.0",
37
- "mf-styling": "^1.7.30",
38
- "npm-pkgbuild": "^10.15.20",
39
- "semantic-release": "^19.0.5",
40
- "svelte": "^3.54.0",
41
- "testcafe": "^2.1.0",
42
- "vite": "^3.2.5"
43
+ "documentation": "^14.0.1",
44
+ "mf-styling": "^1.7.34",
45
+ "npm-pkgbuild": "^10.19.9",
46
+ "semantic-release": "^20.0.2",
47
+ "svelte": "^3.55.1",
48
+ "testcafe": "^2.2.0",
49
+ "vite": "^4.0.4"
43
50
  },
44
51
  "optionalDependencies": {
45
- "mf-hosting": "^1.7.9"
52
+ "mf-hosting-frontend": "^1.0.4"
46
53
  },
47
54
  "repository": {
48
55
  "type": "git",
49
- "url": "https://github.com/arlac77/svelte-entitlement.git"
56
+ "url": "https://github.com/arlac77/svelte-entitlement"
50
57
  },
51
58
  "bugs": {
52
59
  "url": "https://github.com/arlac77/svelte-entitlement/issues"
@@ -57,8 +64,9 @@
57
64
  "${install.dir}": "build/",
58
65
  "${nginx.sites.dir}${name}.conf": "pkg/nginx.conf"
59
66
  },
60
- "groups": "examples",
61
- "description": "example showing ${name} features in action"
67
+ "description": "example showing ${name} features in action",
68
+ "example": true,
69
+ "frontend": true
62
70
  },
63
71
  "release": {
64
72
  "plugins": [
@@ -68,7 +76,7 @@
68
76
  [
69
77
  "@semantic-release/exec",
70
78
  {
71
- "publishCmd": "npx npm-pkgbuild --available --continue --publish dist"
79
+ "publishCmd": "npx npm-pkgbuild --available --continue --publish dist --verbose"
72
80
  }
73
81
  ],
74
82
  [
@@ -94,7 +102,7 @@
94
102
  "arlac77/template-cloudflare",
95
103
  "arlac77/template-pacman",
96
104
  "arlac77/template-svelte-component",
97
- "arlrac77/template-arlac77-github"
105
+ "arlac77/template-arlac77-github"
98
106
  ]
99
107
  }
100
108
  }