edu-webcomponents 1.9.0 → 1.13.0

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.
@@ -5,13 +5,17 @@ on:
5
5
  jobs:
6
6
  build:
7
7
  runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ id-token: write
8
11
  steps:
9
12
  - uses: actions/checkout@v4
10
13
  - uses: actions/setup-node@v4
11
14
  with:
12
15
  node-version: '20.x'
13
16
  registry-url: 'https://registry.npmjs.org'
17
+ - run: npm install -g npm
14
18
  - run: npm ci
15
- - run: npm publish --access public
19
+ - run: npm publish --provenance --access public
16
20
  env:
17
21
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -28,4 +28,16 @@
28
28
  - Setup [npm-check-updates](https://www.npmjs.com/package/npm-check-updates) to manage updates of dependencies of package.json
29
29
 
30
30
  ## 1.9.0 - 2024-06-16
31
- - Update dependencies
31
+ - Update dependencies
32
+
33
+ ## 1.10.0 - 2024-06-17
34
+ - Add keywords to the repository
35
+
36
+ ## 1.11.0 - 2024-06-19
37
+ - Add provenance to packages in npm registry
38
+
39
+ ## 1.12.0 - 2024-06-20
40
+ - Update dependencies
41
+
42
+ ## 1.13.0 - 2024-06-20
43
+ - Fix provenance when publishing packages to npm registry
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "edu-webcomponents",
3
3
  "description": "Webcomponent edu-webcomponents following open-wc recommendations",
4
+ "keywords": [
5
+ "web components library",
6
+ "web components catalog",
7
+ "webcomponents library",
8
+ "webcomponents catalog",
9
+ "web components",
10
+ "webcomponents"
11
+ ],
4
12
  "license": "MIT",
5
13
  "author": "edu-webcomponents",
6
- "version": "1.9.0",
14
+ "version": "1.13.0",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/eduardocruzpalacios/edu-webcomponents"
18
+ },
7
19
  "type": "module",
8
20
  "main": "index.js",
9
21
  "module": "index.js",
@@ -29,13 +41,13 @@
29
41
  "@custom-elements-manifest/analyzer": "^0.10.2",
30
42
  "@open-wc/eslint-config": "^9.2.2",
31
43
  "@open-wc/testing": "^3.2.2",
32
- "@storybook/addon-essentials": "^8.1.9",
33
- "@storybook/addon-links": "^8.1.9",
34
- "@storybook/addon-webpack5-compiler-swc": "^1.0.3",
35
- "@storybook/blocks": "^8.1.9",
36
- "@storybook/test": "^8.1.9",
37
- "@storybook/web-components": "^8.1.9",
38
- "@storybook/web-components-webpack5": "^8.1.9",
44
+ "@storybook/addon-essentials": "^8.1.10",
45
+ "@storybook/addon-links": "^8.1.10",
46
+ "@storybook/addon-webpack5-compiler-swc": "^1.0.4",
47
+ "@storybook/blocks": "^8.1.10",
48
+ "@storybook/test": "^8.1.10",
49
+ "@storybook/web-components": "^8.1.10",
50
+ "@storybook/web-components-webpack5": "^8.1.10",
39
51
  "@web/dev-server": "^0.4.5",
40
52
  "@web/test-runner": "^0.18.2",
41
53
  "eslint": "^8.57.0",
@@ -44,7 +56,7 @@
44
56
  "husky": "^9.0.11",
45
57
  "lint-staged": "^10.5.4",
46
58
  "prettier": "^2.8.8",
47
- "storybook": "^8.1.9"
59
+ "storybook": "^8.1.10"
48
60
  },
49
61
  "customElements": "custom-elements.json",
50
62
  "eslintConfig": {
@@ -58,4 +70,4 @@
58
70
  "singleQuote": true,
59
71
  "arrowParens": "avoid"
60
72
  }
61
- }
73
+ }