diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 503df41..234718b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,8 +29,8 @@ jobs: - name: Archive production artifacts 🚀 uses: actions/upload-artifact@v4 with: - name: lib - path: lib + name: dist + path: dist/ release: name: semantic-release needs: [build] @@ -47,7 +47,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: lib + name: dist + path: dist/ - name: Publish package 📦 run: | npm ci diff --git a/CHANGELOG.md b/CHANGELOG.md index b68a26b..21ee737 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.0.1](https://github.com/ExtendScript/CSInterface/compare/v1.0.0...v1.0.1) (2024-05-08) + + +### Bug Fixes + +* **ci:** fix build ([a77f963](https://github.com/ExtendScript/CSInterface/commit/a77f96311611b3371a4d52637d9e98a0adefb55a)) + # 1.0.0 (2024-05-08) diff --git a/package-lock.json b/package-lock.json index bd9966a..e0a6062 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@extendscript/csinterface", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@extendscript/csinterface", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "devDependencies": { "@semantic-release/changelog": "6.0.3", diff --git a/package.json b/package.json index df0d187..334bb66 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "@extendscript/csinterface", - "version": "1.0.0", + "version": "1.0.1", "description": "TypeScript version of Adobe CSInterface", - "main": "lib/index.js", - "types": "lib/index.d.ts", + "main": "dist/index.js", + "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "echo \"Error: no test specified\" && exit 0" @@ -41,6 +41,6 @@ "typescript": "^5.4.5" }, "files": [ - "lib/**/*" + "dist/**/*" ] } diff --git a/tsconfig.json b/tsconfig.json index 75848c4..a499f26 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "target": "es5", "module": "commonjs", - "outDir": "lib", + "outDir": "dist", "removeComments": false, "preserveConstEnums": true, "types": ["./CEPEngine_extensions", "./window", "@types/node"],