Created
July 5, 2020 00:39
-
-
Save magnus-trent/5dc1a98cfd51b6d059a19885f7cef3e2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// ~/.noderalis.ts | |
import { ProjectConfiguration } from '@noderalis/core'; | |
import { CleanWebpackPlugin } from 'clean-webpack-plugin'; | |
console.log('Success!!!'); | |
ProjectConfiguration.create({ | |
builds: [ | |
{ | |
entry: async () => ProjectConfiguration.workspace('@noderalis/cli'), // C:\...\noderalis\packages\noderalis-cli\sources\index.ts | |
plugins: [new CleanWebpackPlugin()], | |
}, | |
{ | |
entry: async () => ProjectConfiguration.workspace('@noderalis/core'), // C:\...\noderalis\packages\noderalis-core\sources\index.ts | |
plugins: [new CleanWebpackPlugin()], | |
}, | |
], | |
verbosity: 'open', | |
}); | |
export const testy = { | |
name: 'Grim', | |
age: 22, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment