-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from marcomontalbano/update-website
Update website
- Loading branch information
Showing
55 changed files
with
890 additions
and
965 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
**/dist/* | ||
**/node_modules/* | ||
**/out/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
module.exports = { | ||
root: true, | ||
extends: 'next', | ||
'settings': { | ||
'next': { | ||
'rootDir': 'packages/website/' | ||
} | ||
}, | ||
'rules': { | ||
'@next/next/no-img-element': 'off', | ||
'@next/next/no-css-tags': 'off' | ||
root: true, | ||
extends: 'next', | ||
'settings': { | ||
'next': { | ||
'rootDir': 'packages/website/' | ||
} | ||
}; | ||
}, | ||
'rules': { | ||
'@next/next/no-img-element': 'off', | ||
'@next/next/no-css-tags': 'off', | ||
'indent': ['error', 2] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
8 changes: 1 addition & 7 deletions
8
packages/website/next.config.js → packages/website/next.config.mjs
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,14 +1,8 @@ | ||
// @ts-check | ||
|
||
// const withImages = require('next-images'); | ||
// module.exports = withImages(nextConfig); | ||
|
||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
// https://nextjs.org/docs/api-reference/next.config.js/react-strict-mode | ||
reactStrictMode: true, | ||
output: 'export' | ||
} | ||
|
||
module.exports = nextConfig; | ||
export default nextConfig |
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,51 +1,52 @@ | ||
{ | ||
"private": true, | ||
"name": "@figma-export/website", | ||
"version": "6.0.0", | ||
"description": "Website for @figma-export", | ||
"author": "Marco Montalbano", | ||
"keywords": [ | ||
"figma", | ||
"export", | ||
"design", | ||
"icons", | ||
"typography", | ||
"components" | ||
], | ||
"homepage": "https://figma-export.marcomontalbano.com/", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "rimraf dist output .next out", | ||
"figma:export": "figma-export use-config .figmaexportrc.mjs", | ||
"next:lint": "next lint", | ||
"next:dev": "next dev", | ||
"next:build": "next build", | ||
"dev": "run-s figma:export next:dev", | ||
"build": "run-s clean figma:export next:build" | ||
}, | ||
"devDependencies": { | ||
"@figma-export/cli": "^6.0.0", | ||
"@figma-export/utils": "^6.0.0", | ||
"@types/react": "^18.3.1", | ||
"eslint-config-next": "^14.2.3", | ||
"npm-run-all": "~4.1.5", | ||
"rimraf": "~5.0.6", | ||
"sass": "~1.77.0" | ||
}, | ||
"dependencies": { | ||
"@svgr/plugin-jsx": "^8.1.0", | ||
"next": "^14.2.3", | ||
"prismjs": "^1.29.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1" | ||
}, | ||
"engines": { | ||
"node": ">= 18.17" | ||
}, | ||
"browserslist": [ | ||
">0.3%", | ||
"not ie 11", | ||
"not dead", | ||
"not op_mini all" | ||
] | ||
"private": true, | ||
"name": "@figma-export/website", | ||
"version": "6.0.0", | ||
"description": "Website for @figma-export", | ||
"author": "Marco Montalbano", | ||
"keywords": [ | ||
"figma", | ||
"export", | ||
"design", | ||
"icons", | ||
"typography", | ||
"components" | ||
], | ||
"homepage": "https://figma-export.marcomontalbano.com/", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "rimraf dist output .next out", | ||
"figma:export": "figma-export use-config .figmaexportrc.mjs", | ||
"next:lint": "next lint", | ||
"next:dev": "next dev", | ||
"next:build": "next build", | ||
"dev": "run-s figma:export next:dev", | ||
"build": "run-s clean figma:export next:build" | ||
}, | ||
"devDependencies": { | ||
"@figma-export/cli": "^6.0.0", | ||
"@figma-export/utils": "^6.0.0", | ||
"@types/react": "^18.3.1", | ||
"eslint-config-next": "^14.2.3", | ||
"npm-run-all": "~4.1.5", | ||
"rimraf": "~5.0.6", | ||
"sass": "~1.77.0" | ||
}, | ||
"dependencies": { | ||
"@svgr/plugin-jsx": "^8.1.0", | ||
"@types/prismjs": "^1.26.4", | ||
"next": "^14.2.3", | ||
"prismjs": "^1.29.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1" | ||
}, | ||
"engines": { | ||
"node": ">= 18.17" | ||
}, | ||
"browserslist": [ | ||
">0.3%", | ||
"not ie 11", | ||
"not dead", | ||
"not op_mini all" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.