@faststore/core 0.0.0 → 0.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.
@@ -5,6 +5,7 @@ on:
5
5
  push:
6
6
  branches:
7
7
  - main
8
+ - fix/npm
8
9
 
9
10
  jobs:
10
11
  release:
@@ -13,7 +14,6 @@ jobs:
13
14
  runs-on: ubuntu-latest
14
15
  if: github.repository == 'vtex-sites/nextjs.store' && !startsWith(github.event.head_commit.message, 'chore(release):')
15
16
 
16
-
17
17
  steps:
18
18
  - name: Check out code
19
19
  uses: actions/checkout@v2
@@ -37,4 +37,6 @@ jobs:
37
37
  run: yarn install --verbose
38
38
 
39
39
  - name: Release
40
- run: yarn release
40
+ run: npm run release
41
+ env:
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
package/.release-it.json CHANGED
@@ -3,10 +3,12 @@
3
3
  "commitMessage": "chore(release): ${version}"
4
4
  },
5
5
  "npm": {
6
- "publish": true
6
+ "publish": true,
7
+ "skipChecks": true
7
8
  },
8
9
  "publishConfig": {
9
- "access": "public"
10
+ "access": "public",
11
+ "registry": "registry.npmjs.org"
10
12
  },
11
13
  "plugins": {
12
14
  "@release-it/conventional-changelog": {
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog),
6
6
  and this project adheres to [Calendar Versioning](https://calver.org/).
7
7
 
8
+ ### 0.0.2 (2022-10-25)
9
+
10
+ ### 0.0.1 (2022-10-25)
11
+
8
12
  ### [22.42.6](https://github.com/vtex-sites/nextjs.store/compare/22.42.5...22.42.6) (2022-10-24)
9
13
 
10
14
  ### [22.42.5](https://github.com/vtex-sites/nextjs.store/compare/22.42.4...22.42.5) (2022-10-24)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faststore/core",
3
- "version": "0.0.0",
3
+ "version": "0.0.2",
4
4
  "license": "MIT",
5
5
  "browserslist": "supports es6-module and not dead",
6
6
  "scripts": {