Skip to content

Commit

Permalink
final publish
Browse files Browse the repository at this point in the history
  • Loading branch information
dvargas92495 committed Nov 10, 2024
1 parent a55599c commit 32bef5c
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-generator-commons.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Run publish
working-directory: generators/commons
run: |
pnpm --filter=${{ env.PACKAGE_NAME }} dist 0.0.2
pnpm --filter=${{ env.PACKAGE_NAME }} dist 0.0.3
cd lib
echo "//registry.npmjs.org/:_authToken=${{ env.NPM_TOKEN }}" > ~/.npmrc
npm publish --access public
2 changes: 1 addition & 1 deletion .github/workflows/publish-python-ast.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Run publish
working-directory: generators/python-v2/ast
run: |
pnpm --filter=${{ env.PACKAGE_NAME }} dist 0.0.4
pnpm --filter=${{ env.PACKAGE_NAME }} dist 0.0.5
cd lib
echo "//registry.npmjs.org/:_authToken=${{ env.NPM_TOKEN }}" > ~/.npmrc
npm publish --access public
2 changes: 1 addition & 1 deletion generators/commons/build.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function lib_main() {
name: packageJson.name,
version: process.argv[2] || packageJson.version,
repository: packageJson.repository,
main: "index.cjs",
main: "index.js",
types: "index.d.ts",
type: "module",
files: ["*.js", "*.d.ts", "ast/", "project/", "readme/", "reference/", "utils/"],
Expand Down
2 changes: 1 addition & 1 deletion generators/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fern-api/generator-commons",
"version": "0.0.2",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/fern-api/fern.git",
Expand Down
6 changes: 6 additions & 0 deletions generators/commons/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
- version: 0.0.3
createdAt: '2024-11-05'
changelogEntry:
- type: internal
summary: Fix main field.
irVersion: 33
- version: 0.0.2
createdAt: '2024-11-05'
changelogEntry:
Expand Down
2 changes: 1 addition & 1 deletion generators/python-v2/ast/build.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function lib_main() {
name: packageJson.name,
version: process.argv[2] || packageJson.version,
repository: packageJson.repository,
main: "index.cjs",
main: "index.js",
types: "index.d.ts",
type: "module",
files: ["*.js", "*.d.ts", "core/", ],
Expand Down
2 changes: 1 addition & 1 deletion generators/python-v2/ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fern-api/python-ast",
"version": "0.0.4",
"version": "0.0.5",
"repository": {
"type": "git",
"url": "https://github.com/fern-api/fern.git",
Expand Down
6 changes: 6 additions & 0 deletions generators/python-v2/ast/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
- version: 0.0.5
createdAt: '2024-11-05'
changelogEntry:
- type: internal
summary: Publish Commons 0.0.3 and fix main field.
irVersion: 33
- version: 0.0.4
createdAt: '2024-11-04'
changelogEntry:
Expand Down

0 comments on commit 32bef5c

Please sign in to comment.