@faststore/core 0.0.0 → 0.0.1

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:
@@ -12,7 +13,12 @@ jobs:
12
13
  timeout-minutes: 5
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
+ env:
17
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
18
+ NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
19
+ NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
20
+ YARN_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
21
+ YARN_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
16
22
 
17
23
  steps:
18
24
  - name: Check out code
@@ -37,4 +43,4 @@ jobs:
37
43
  run: yarn install --verbose
38
44
 
39
45
  - name: Release
40
- run: yarn release
46
+ run: npm run release
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,8 @@ 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.1 (2022-10-25)
9
+
8
10
  ### [22.42.6](https://github.com/vtex-sites/nextjs.store/compare/22.42.5...22.42.6) (2022-10-24)
9
11
 
10
12
  ### [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.1",
4
4
  "license": "MIT",
5
5
  "browserslist": "supports es6-module and not dead",
6
6
  "scripts": {