Skip to content

Commit

Permalink
Replaced .js with .ts in publicEntrypoints()
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Sep 5, 2024
1 parent 580319b commit 91fe743
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprints-v2-addon",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"description": "Blueprints for v2 addons",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions src/blueprints/run-new/__addonLocation__/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export default {
// See https://github.com/embroider-build/embroider/blob/main/docs/v2-faq.md#how-can-i-define-the-public-exports-of-my-addon
addon.publicEntrypoints([
'**/*.js',
'index.js',
'template-registry.js',
'test-support.js',
'index.ts',
'template-registry.ts',
'test-support.ts',
]),

// These are the modules that should get reexported into the traditional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export default {
// See https://github.com/embroider-build/embroider/blob/main/docs/v2-faq.md#how-can-i-define-the-public-exports-of-my-addon
addon.publicEntrypoints([
'**/*.js',
'index.js',
'template-registry.js',
'test-support.js',
'index.ts',
'template-registry.ts',
'test-support.ts',
]),

// These are the modules that should get reexported into the traditional
Expand Down
2 changes: 1 addition & 1 deletion update-blueprints.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import gitDiffApply from 'git-diff-apply';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';

const CURRENT_VERSION = '0.1.3';
const CURRENT_VERSION = '0.1.4';

async function updateBlueprints({ from, to }) {
const startTag = from;
Expand Down

0 comments on commit 91fe743

Please sign in to comment.