Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

create-helium-app

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-helium-app - npm Package Compare versions

Comparing version 1.0.0-alpha.23 to 1.0.0-alpha.24

template-base/components/CatalogAndAggreg/CatalogError.tsx

4

package.json

@@ -6,3 +6,3 @@ {

},
"version": "1.0.0-alpha.23",
"version": "1.0.0-alpha.24",
"main": "index.js",

@@ -27,3 +27,3 @@ "license": "MIT",

},
"gitHead": "75254c8afc7653ce67f1e453960fd2d90d9ef69f"
"gitHead": "f1973cf8722a705246e8eec8a484ae7e0b30f601"
}

@@ -6,2 +6,14 @@ # Change Log

# [1.1.0-alpha.22](https://github.com/thoughtindustries/helium/compare/@thoughtindustries/helium-template@1.1.0-alpha.21...@thoughtindustries/helium-template@1.1.0-alpha.22) (2022-08-18)
### Features
* format ticonfig ([#148](https://github.com/thoughtindustries/helium/issues/148)) ([46b3ebd](https://github.com/thoughtindustries/helium/commit/46b3ebdd42dede67fe75327777a0707dd33d8ae6))
* use local catalog error component ([#150](https://github.com/thoughtindustries/helium/issues/150)) ([7c37ef4](https://github.com/thoughtindustries/helium/commit/7c37ef441d802c35bd0603c7d7f76dbdbffee35a))
# [1.1.0-alpha.21](https://github.com/thoughtindustries/helium/compare/@thoughtindustries/helium-template@1.1.0-alpha.20...@thoughtindustries/helium-template@1.1.0-alpha.21) (2022-08-17)

@@ -8,0 +20,0 @@

{
"name": "@thoughtindustries/helium-template",
"version": "1.1.0-alpha.21",
"version": "1.1.0-alpha.22",
"scripts": {

@@ -26,2 +26,3 @@ "authenticate": "helium authenticate",

"@mdx-js/react": "^1.6.22",
"@mdx-js/rollup": "^2.1.2",
"@tailwindcss/line-clamp": "^0.3.1",

@@ -45,2 +46,4 @@ "@thoughtindustries/cart": "^1.1.1",

"react-i18next": "^11.14.2",
"remark-frontmatter": "^4.0.1",
"remark-mdx-frontmatter": "^2.0.3",
"tailwindcss": "^3.0.9",

@@ -51,3 +54,3 @@ "vite": "^2.5.2",

"devDependencies": {
"@thoughtindustries/helium": "^1.1.0-alpha.6",
"@thoughtindustries/helium": "^1.1.0-alpha.7",
"@types/node": "^17.0.23",

@@ -61,3 +64,4 @@ "@types/react": "^17.0.39",

"npm": "8.6.0"
}
},
"gitHead": "f1973cf8722a705246e8eec8a484ae7e0b30f601"
}
import { tiConfig } from '@thoughtindustries/helium-server';
// @ts-ignore: There is no declarations file for this package
import mdx from './vendor/mdx';
const mdxOptions = {
remarkPlugins: [],
rehypePlugins: []
};
import { defineConfig } from 'vite';
tiConfig.plugins.push(mdx(mdxOptions));
export default defineConfig(async () => {
const remarkFrontmatter = await import('remark-frontmatter');
const remarkMdxFrontmatter = await import('remark-mdx-frontmatter');
const mdx = await import('@mdx-js/rollup');
export default tiConfig;
const mdxOptions = {
remarkPlugins: [remarkFrontmatter, remarkMdxFrontmatter.default],
rehypePlugins: []
};
tiConfig.plugins.push(mdx.default(mdxOptions));
return tiConfig;
});

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc