Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
- run: npm run release
- run: npm run create:package
- run: npm install
- run: npm run publish
- run: npm run release
- run: cd ~/work/framework/framework/dist && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@next2d/framework",
"description": "Next2D Framework is designed according to the principles of clean architecture, domain-driven development, test-driven development, and MVVM, with an emphasis on flexibility, scalability, and maintainability, and a design methodology that keeps each layer loosely coupled.",
"version": "3.0.1",
"version": "3.0.2",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/Framework/issues/new",
"author": "Toshiyuki Ienaga <[email protected]> (https://github.com/ienaga/)",
Expand All @@ -22,8 +22,8 @@
"scripts": {
"lint": "eslint src/**/*.ts",
"clean": "node ./scripts/clean.js",
"release": "node ./scripts/release.js",
"publish": "node ./scripts/version.js && tsc && node ./scripts/publish.js",
"create:package": "node ./scripts/create.js",
"release": "node ./scripts/version.js && tsc && node ./scripts/publish.js",
"test": "vitest"
},
"repository": {
Expand Down
File renamed without changes.