Skip to content

Commit 9cd5019

Browse files
committed
Remove build script
1 parent f1021bd commit 9cd5019

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.release-plan.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"pkgJSONPath": "./package.json"
1919
}
2020
},
21-
"description": "## Release (2025-12-18)\n\n* ember-cli-deprecation-workflow 4.0.0 (major)\n\n#### :boom: Breaking Change\n* `ember-cli-deprecation-workflow`\n * [#222](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/222) Convert to v2 Addon - classic apps (using ember-cli for build) will want to remain on v3 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `ember-cli-deprecation-workflow`\n * [#223](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/223) Update release plan ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#220](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/220) chore: Test latest LTS versions ([@TSenter](https://github.com/TSenter))\n\n#### Committers: 2\n- Tyler Senter ([@TSenter](https://github.com/TSenter))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
21+
"description": "## Release (2025-12-18)\n \n* ember-cli-deprecation-workflow 4.0.0 (major)\n\n#### :boom: Breaking Change\n* `ember-cli-deprecation-workflow`\n * [#222](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/222) Convert to v2 Addon - classic apps (using ember-cli for build) will want to remain on v3 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `ember-cli-deprecation-workflow`\n * [#223](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/223) Update release plan ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#220](https://github.com/ember-cli/ember-cli-deprecation-workflow/pull/220) chore: Test latest LTS versions ([@TSenter](https://github.com/TSenter))\n\n#### Committers: 2\n- Tyler Senter ([@TSenter](https://github.com/TSenter))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
2222
}

package.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,22 @@
1313
},
1414
"exports": {
1515
".": {
16-
"default": "./dist/index.js"
16+
"types": "./src/index.d.ts",
17+
"default": "./src/index.js"
1718
},
18-
"./addon-main.js": "./addon-main.cjs",
19-
"./*.css": "./dist/*.css",
20-
"./*": {
21-
"default": "./dist/*.js"
22-
}
19+
"./addon-main.js": "./addon-main.cjs"
2320
},
2421
"files": [
2522
"addon-main.cjs",
26-
"declarations",
27-
"dist",
2823
"src"
2924
],
3025
"scripts": {
31-
"build": "rollup --config",
3226
"format": "prettier . --cache --write",
3327
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
3428
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
3529
"lint:format": "prettier . --cache --check",
3630
"lint:js": "eslint . --cache",
3731
"lint:js:fix": "eslint . --fix",
38-
"prepack": "rollup --config",
3932
"start": "vite dev",
4033
"test": "vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0"
4134
},

0 commit comments

Comments
 (0)