mirror of
https://github.com/fluencelabs/examples
synced 2025-04-25 10:42:16 +00:00
Use sass instead of node-sass (#354)
This commit is contained in:
parent
37f3b0777f
commit
a2002458d2
@ -25,7 +25,6 @@
|
|||||||
"@fluencelabs/aqua-ipfs": "^0.5.5",
|
"@fluencelabs/aqua-ipfs": "^0.5.5",
|
||||||
"@fluencelabs/fluence": "^0.23.0",
|
"@fluencelabs/fluence": "^0.23.0",
|
||||||
"@fluencelabs/fluence-network-environment": "1.0.13",
|
"@fluencelabs/fluence-network-environment": "1.0.13",
|
||||||
"ipfs-http-client": "^56.0.3",
|
|
||||||
"it-all": "^1.0.5",
|
"it-all": "^1.0.5",
|
||||||
"multiaddr": "^10.0.0",
|
"multiaddr": "^10.0.0",
|
||||||
"uint8arrays": "^2.1.5"
|
"uint8arrays": "^2.1.5"
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
preset: 'ts-jest',
|
preset: 'ts-jest',
|
||||||
testEnvironment: 'node',
|
|
||||||
testPathIgnorePatterns: ['dist'],
|
testPathIgnorePatterns: ['dist'],
|
||||||
};
|
};
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
"@fluencelabs/fluence": "^0.23.0",
|
"@fluencelabs/fluence": "^0.23.0",
|
||||||
"@fluencelabs/fluence-network-environment": "1.0.13",
|
"@fluencelabs/fluence-network-environment": "1.0.13",
|
||||||
"@fluencelabs/ipfs-execution-aqua": "file:../aqua",
|
"@fluencelabs/ipfs-execution-aqua": "file:../aqua",
|
||||||
"ipfs-http-client": "^50.1.2",
|
|
||||||
"it-all": "^1.0.5",
|
"it-all": "^1.0.5",
|
||||||
"multiaddr": "^10.0.0",
|
"multiaddr": "^10.0.0",
|
||||||
"uint8arrays": "^2.1.5"
|
"uint8arrays": "^2.1.5"
|
||||||
|
@ -32,8 +32,12 @@ export async function main(environment: Node[]) {
|
|||||||
try {
|
try {
|
||||||
await providerClient.start({ connectTo: providerHost });
|
await providerClient.start({ connectTo: providerHost });
|
||||||
console.log('📘 uploading .wasm to node %s', providerHost.multiaddr);
|
console.log('📘 uploading .wasm to node %s', providerHost.multiaddr);
|
||||||
let path = globSource('../service/artifacts/process_files.wasm');
|
const firstThing = await globSource('../service/artifacts/', 'process_files.wasm').next();
|
||||||
let { file, swarmAddr, rpcAddr } = await provideFile(path, providerClient);
|
const fileCandidate = await firstThing.value
|
||||||
|
if(fileCandidate === undefined) {
|
||||||
|
throw new Error("Couldn't read process_files.wasm");
|
||||||
|
}
|
||||||
|
let { file, swarmAddr, rpcAddr } = await provideFile(fileCandidate, providerClient);
|
||||||
console.log('📗 swarmAddr', swarmAddr);
|
console.log('📗 swarmAddr', swarmAddr);
|
||||||
console.log('📗 rpcAddr', rpcAddr);
|
console.log('📗 rpcAddr', rpcAddr);
|
||||||
|
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
import { create, CID } from 'ipfs-http-client';
|
import { create, CID } from 'ipfs-http-client';
|
||||||
import { AddResult } from 'ipfs-core-types/src/root';
|
import type { AddResult } from 'ipfs-core-types/src/root';
|
||||||
|
import type { ImportCandidate } from 'ipfs-core-types/src/utils';
|
||||||
import { Multiaddr, protocols } from 'multiaddr';
|
import { Multiaddr, protocols } from 'multiaddr';
|
||||||
|
|
||||||
import { FluencePeer } from '@fluencelabs/fluence';
|
import { FluencePeer } from '@fluencelabs/fluence';
|
||||||
import { get_external_api_multiaddr, get_external_swarm_multiaddr } from '@fluencelabs/ipfs-execution-aqua';
|
import { get_external_api_multiaddr, get_external_swarm_multiaddr } from '@fluencelabs/ipfs-execution-aqua';
|
||||||
|
|
||||||
export async function provideFile(
|
export async function provideFile(
|
||||||
source: any,
|
source: ImportCandidate,
|
||||||
provider: FluencePeer,
|
provider: FluencePeer,
|
||||||
): Promise<{ file: AddResult; swarmAddr: string; rpcAddr: string }> {
|
): Promise<{ file: AddResult; swarmAddr: string; rpcAddr: string }> {
|
||||||
const relayPeerId = provider.getStatus().relayPeerId!;
|
const relayPeerId = provider.getStatus().relayPeerId!;
|
||||||
|
1825
aqua-examples/aqua-ipfs-integration/package-lock.json
generated
1825
aqua-examples/aqua-ipfs-integration/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -9,6 +9,7 @@
|
|||||||
"build": "check-node-version --npm '>= 7' && npm run build -w aqua -w nodejs -w web"
|
"build": "check-node-version --npm '>= 7' && npm run build -w aqua -w nodejs -w web"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"ipfs-http-client": "^56.0.3",
|
||||||
"@fluencelabs/aqua": "^0.7.4-322",
|
"@fluencelabs/aqua": "^0.7.4-322",
|
||||||
"@fluencelabs/fluence": "^0.23.0",
|
"@fluencelabs/fluence": "^0.23.0",
|
||||||
"typescript": "^4.6.3"
|
"typescript": "^4.6.3"
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
"@types/node": "^12.20.16",
|
"@types/node": "^12.20.16",
|
||||||
"@types/react": "^17.0.14",
|
"@types/react": "^17.0.14",
|
||||||
"@types/react-dom": "^17.0.9",
|
"@types/react-dom": "^17.0.9",
|
||||||
"ipfs-http-client": "^50.1.2",
|
|
||||||
"multiaddr": "^10.0.0",
|
"multiaddr": "^10.0.0",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
@ -25,7 +24,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "copy-marine public",
|
"postinstall": "copy-marine public",
|
||||||
"start": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"build": "react-scripts build",
|
"build": "react-scripts build && copy-marine public",
|
||||||
"test": "jest --config=jest.config.js",
|
"test": "jest --config=jest.config.js",
|
||||||
"_test": "react-scripts test",
|
"_test": "react-scripts test",
|
||||||
"eject": "react-scripts eject"
|
"eject": "react-scripts eject"
|
||||||
@ -54,7 +53,7 @@
|
|||||||
"@types/serve-handler": "^6.1.1",
|
"@types/serve-handler": "^6.1.1",
|
||||||
"@types/jest-environment-puppeteer": "^4.4.1",
|
"@types/jest-environment-puppeteer": "^4.4.1",
|
||||||
"@types/puppeteer": "^5.4.4",
|
"@types/puppeteer": "^5.4.4",
|
||||||
"node-sass": "^6.0.1",
|
"sass": "1.53.0",
|
||||||
"jest-puppeteer": "^6.0.2",
|
"jest-puppeteer": "^6.0.2",
|
||||||
"serve": "^13.0.2",
|
"serve": "^13.0.2",
|
||||||
"ts-jest": "^27.1.3"
|
"ts-jest": "^27.1.3"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user