Skip to content

Commit 105babb

Browse files
authored
Release 8.0.0 (#58)
## What's changed * feat: rspack (#56)
2 parents a8fea25 + d5d779e commit 105babb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+14627
-16127
lines changed

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 0 additions & 783 deletions
This file was deleted.

.yarn/releases/yarn-4.1.0.cjs

Lines changed: 893 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
yarnPath: .yarn/releases/yarn-3.2.2.cjs
21
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.1.0.cjs

README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,6 @@ Install visyn_scripts via npm: `npm i --save-dev git+ssh://[email protected]/datavi
1111

1212
Add visyn_scripts to your package.json scripts, i.e. add `"compile": "visyn_scripts compile"` and execute it with `npm run compile`, or alternatively directly execute it with `npx visyn_scripts compile`.
1313

14-
## Scripts
15-
16-
The main purpose of visyn_scripts are the unified scripts:
17-
18-
### build
19-
20-
Builds a workspace using webpack.
21-
22-
### compile
23-
24-
Builds a repository using typescript.
25-
26-
### copy
27-
28-
Copies assets, styles, and static files to the dist folder.
29-
30-
### docs
31-
32-
Generates docs of a repository using typedoc.
33-
34-
### lint
35-
36-
Lints a repository using ESLint.
37-
38-
### test
39-
40-
Tests a repository using Jest.
41-
4214
## Configurations
4315

4416
visyn_scripts also includes default configurations for ESLint, Prettier, Typescript, ...

bin/commands/build.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

bin/commands/bundle.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const { resolve } = require('path');
2+
const { call } = require('./utils');
3+
4+
module.exports = {
5+
command: 'bundle [strings...]',
6+
describe: 'Bundles a repository',
7+
handler: (args) => {
8+
const configPath = resolve(__dirname, '../../config/rspack.config.js');
9+
call('rspack', `build --c "${configPath}" ${(args.strings || []).join(' ')}`, {
10+
env: {
11+
NODE_OPTIONS: '--max-old-space-size=8192',
12+
},
13+
});
14+
},
15+
};

bin/commands/generator/BasePhoveaGenerator.js

Lines changed: 0 additions & 97 deletions
This file was deleted.

bin/commands/generator/clone-repo/index.js

Lines changed: 0 additions & 154 deletions
This file was deleted.

bin/commands/generator/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)