-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(repo): QoL for subpaths script #4180
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
--- |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,10 +1,13 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import packageJson from './package.json' assert { type: 'json' }; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// This file is a helper for the "subpath-workaround.mjs" script | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// We have to polyfill our "exports" subpaths :cry: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import packageJson from './package.json' with { type: 'json' }; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export const subpathNames = Object.keys(packageJson.exports) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.filter(k => k.startsWith('./') && k !== './' && k !== './package.json') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map(k => k.replace('./', '')); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* This file is a helper for the "subpath-workaround.mjs" script. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Add your new subpath to package.json#files. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* When you add an entry to the package.json "files" field, a subfolder will be automatically created with a package.json pointing to that file | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export const subpathNames = packageJson.files.filter(k => k !== 'dist'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. javascript/packages/react/package.json Lines 59 to 63 in 26ab88c
Previously it extracted the same from this: javascript/packages/react/package.json Lines 25 to 57 in 26ab88c
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export const subpathFoldersBarrel = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,13 @@ | ||
// This file is a helper for the "subpath-workaround.mjs" script | ||
// When adding an entry to "subpathNames" also add it to "files" in package.json | ||
import packageJson from './package.json' with { type: 'json' }; | ||
|
||
export const subpathNames = [ | ||
'authorization', | ||
'browser', | ||
'callWithRetry', | ||
'color', | ||
'cookie', | ||
'date', | ||
'deprecated', | ||
'deriveState', | ||
'error', | ||
'file', | ||
'globs', | ||
'handleValueOrFn', | ||
'isomorphicAtob', | ||
'isomorphicBtoa', | ||
'keys', | ||
'loadClerkJsScript', | ||
'loadScript', | ||
'localStorageBroadcastChannel', | ||
'poller', | ||
'proxy', | ||
'underscore', | ||
'url', | ||
'versionSelector', | ||
'constants', | ||
'apiUrlFromPublishableKey', | ||
'telemetry', | ||
'logger', | ||
'webauthn', | ||
'router', | ||
'pathToRegexp', | ||
]; | ||
/** | ||
* This file is a helper for the "subpath-workaround.mjs" script. | ||
* Add your new subpath to package.json#files. | ||
* | ||
* When you add an entry to the package.json "files" field, a subfolder will be automatically created with a package.json pointing to that file | ||
*/ | ||
|
||
export const subpathNames = packageJson.files.filter(k => !['dist', 'scripts', 'react'].includes(k)); | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
export const subpathFoldersBarrel = ['react']; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Source of truth now:
javascript/packages/localizations/package.json
Lines 53 to 92 in 26ab88c