-
Notifications
You must be signed in to change notification settings - Fork 2
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 #444 from MORE-Platform/MORE_update_dependencies
Update package dependencies
- Loading branch information
Showing
47 changed files
with
7,452 additions
and
15,075 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 +1 @@ | ||
v16.15.0 | ||
v18.18.0 |
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
Large diffs are not rendered by default.
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
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,17 +1,14 @@ | ||
const fs = require('fs'); | ||
const postcss = require('postcss'); | ||
const atImport = require('postcss-import'); | ||
import fs from 'fs'; | ||
import postcss from 'postcss'; | ||
import atImport from 'postcss-import'; | ||
import tailwindcssNesting from 'tailwindcss/nesting/index.js'; | ||
import tailwindCss from 'tailwindcss'; | ||
const pcss = fs.readFileSync('./src/style.pcss', 'utf8'); | ||
|
||
postcss().use(atImport()).process(pcss, { | ||
from: './src/style.pcss', | ||
}); | ||
|
||
module.exports = { | ||
plugins: [ | ||
require('postcss-import'), | ||
require('tailwindcss/nesting'), | ||
require('tailwindcss'), | ||
//require('autoprefixer') | ||
], | ||
export default { | ||
plugins: [atImport, tailwindcssNesting, tailwindCss], | ||
}; |
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
Oops, something went wrong.