-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dev w/ packageDetect adjustments
- Loading branch information
Showing
19 changed files
with
43 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2019-2023 @polkadot/wasm-bridge authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import './detectPackage.js'; | ||
import './packageDetect.js'; | ||
|
||
export * from './bundle.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2019-2023 @polkadot/wasm-crypto-asmjs authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import './detectPackage.js'; | ||
import './packageDetect.js'; | ||
|
||
export * from './bundle.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
8 changes: 7 additions & 1 deletion
8
packages/wasm-crypto-init/src/detectOther.ts → ...ges/wasm-crypto-init/src/packageDetect.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
// Copyright 2017-2023 @polkadot/wasm-crypto-init authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Do not edit, auto-generated by @polkadot/dev | ||
// (packageInfo imports will be kept as-is, user-editable) | ||
|
||
import { detectPackage } from '@polkadot/util'; | ||
import { packageInfo as bridgeInfo } from '@polkadot/wasm-bridge/packageInfo'; | ||
import { packageInfo as asmInfo } from '@polkadot/wasm-crypto-asmjs/packageInfo'; | ||
import { packageInfo as wasmInfo } from '@polkadot/wasm-crypto-wasm/packageInfo'; | ||
|
||
export default [bridgeInfo, asmInfo, wasmInfo]; | ||
import { packageInfo } from './packageInfo.js'; | ||
|
||
detectPackage(packageInfo, null, [asmInfo, bridgeInfo, wasmInfo]); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2019-2023 @polkadot/wasm-crypto-wasm authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import './detectPackage.js'; | ||
import './packageDetect.js'; | ||
|
||
export * from './bundle.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2019-2023 @polkadot/wasm-crypto authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import './detectPackage.js'; | ||
import './packageDetect.js'; | ||
|
||
export * from './bundle.js'; |
8 changes: 7 additions & 1 deletion
8
packages/wasm-crypto/src/detectOther.ts → packages/wasm-crypto/src/packageDetect.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
// Copyright 2017-2023 @polkadot/wasm-crypto authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Do not edit, auto-generated by @polkadot/dev | ||
// (packageInfo imports will be kept as-is, user-editable) | ||
|
||
import { detectPackage } from '@polkadot/util'; | ||
import { packageInfo as bridgeInfo } from '@polkadot/wasm-bridge/packageInfo'; | ||
import { packageInfo as asmInfo } from '@polkadot/wasm-crypto-asmjs/packageInfo'; | ||
import { packageInfo as initInfo } from '@polkadot/wasm-crypto-init/packageInfo'; | ||
import { packageInfo as wasmInfo } from '@polkadot/wasm-crypto-wasm/packageInfo'; | ||
import { packageInfo as utilInfo } from '@polkadot/wasm-util/packageInfo'; | ||
|
||
export default [bridgeInfo, asmInfo, initInfo, wasmInfo, utilInfo]; | ||
import { packageInfo } from './packageInfo.js'; | ||
|
||
detectPackage(packageInfo, null, [asmInfo, bridgeInfo, initInfo, utilInfo, wasmInfo]); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2019-2023 @polkadot/wasm-util authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import './detectPackage.js'; | ||
import './packageDetect.js'; | ||
|
||
export * from './bundle.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters