Skip to content
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

remove first banner #10

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
35d7c48
remove first banner
mocolicious Jul 22, 2023
d417814
new yarn lock
mocolicious Jul 22, 2023
4cae529
remove package lockfile
mocolicious Jul 22, 2023
710924c
yarn upgrade
mocolicious Jul 22, 2023
51912f4
yarn upgrade
mocolicious Jul 22, 2023
3592b66
add dep to squash error
mocolicious Jul 22, 2023
2b40164
builds and runs locally
mocolicious Jul 22, 2023
39ac270
fix local buffer error
mocolicious Jul 22, 2023
d9c2461
WIP remove old kin library
mocolicious Jul 22, 2023
1650bca
try crypto false
mocolicious Jul 22, 2023
8e4368e
WIP fix console errors
mocolicious Jul 23, 2023
cb6504c
WIP it loads wallet seed does not resolve token ac
mocolicious Jul 30, 2023
1a91ff6
sends with seed
mocolicious Aug 6, 2023
1e6bc9d
fix package json
mocolicious Aug 6, 2023
20ec5b5
fix typo in package json
mocolicious Aug 6, 2023
0e5194d
try fix for gatsby
mocolicious Aug 6, 2023
3b2051c
try fix for gatsby
mocolicious Aug 6, 2023
0869922
update gatsby
mocolicious Aug 6, 2023
d583f7b
fix gatsby file
mocolicious Aug 6, 2023
c2d6287
try fix for gatsby
mocolicious Aug 6, 2023
07e8942
made node crypto false
mocolicious Aug 6, 2023
c88e66c
try this
mocolicious Aug 6, 2023
11f40e0
try fallback approach
mocolicious Aug 7, 2023
c7cf176
try fix
mocolicious Aug 7, 2023
b32f8b0
test fix
mocolicious Aug 7, 2023
f6f585a
add fallbacks
mocolicious Sep 29, 2023
57f55c6
try this
mocolicious Sep 29, 2023
cf37249
convert to .ts
mocolicious Sep 29, 2023
1673103
try removing author
mocolicious Sep 30, 2023
e01e5ef
switch type to any
mocolicious Oct 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
10 changes: 6 additions & 4 deletions gatsby-config.js → gatsby-config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
const path = require('path');
module.exports = {
import type { GatsbyConfig } from "gatsby"

const config: any = {
siteMetadata: {
title: `Coin transfer system`,
description: `Kin coins transfer system`,
author: `@KIN`
title: `Feeless Kin Wallet`,
description: `Send Kin Without Fees`,
author: `Kin Foundation remixed by Mocolicious`
},
plugins: [
'gatsby-plugin-react-helmet',
Expand Down
7 changes: 0 additions & 7 deletions gatsby-node.js

This file was deleted.

47 changes: 47 additions & 0 deletions gatsby-node.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import * as webpack from 'webpack'

export const onCreateWebpackConfig = ({
stage,
rules,
loaders,
plugins,
actions,
}) => {
actions.setWebpackConfig({
module: {
rules: [
{
test: /\.less$/,
use: [
// You don't need to add the matching ExtractText plugin
// because gatsby already includes it and makes sure it's only
// run at the appropriate stages, e.g. not in development
loaders.miniCssExtract(),
loaders.css({ importLoaders: 1 }),
// the postcss loader comes with some nice defaults
// including autoprefixer for our configured browsers
loaders.postcss(),
`less-loader`,
],
},
],
},
resolve: {
fallback: {
url: require.resolve('url'),
assert: require.resolve('assert'),
crypto: require.resolve('crypto-browserify'),
http: require.resolve('stream-http'),
https: require.resolve('https-browserify'),
os: require.resolve('os-browserify/browser'),
buffer: require.resolve('buffer'),
stream: require.resolve('stream-browserify'),
},
},
plugins: [
new webpack.NormalModuleReplacementPlugin(/node:/, (resource) => {
resource.request = resource.request.replace(/^node:/, "");
})
],
})
}
9 changes: 0 additions & 9 deletions gatsby-ssr.js

This file was deleted.

Loading