Switched to Yarn 2 and PnP.

This commit is contained in:
Daan Vanden Bosch 2020-09-29 17:07:13 +02:00
parent c633176925
commit 922db80097
9 changed files with 11425 additions and 8516 deletions

13
.gitignore vendored
View File

@ -1,13 +1,15 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # editors
# Editors
.idea .idea
.vscode .vscode
# dependencies # dependencies
/node_modules /node_modules
/.pnp .yarn/*
.pnp.js !.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
# testing # testing
/coverage /coverage
@ -24,6 +26,7 @@
.env.test.local .env.test.local
.env.production.local .env.production.local
# log files
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*

55
.yarn/releases/yarn-berry.cjs vendored Normal file

File diff suppressed because one or more lines are too long

1
.yarnrc.yml Normal file
View File

@ -0,0 +1 @@
yarnPath: ".yarn/releases/yarn-berry.cjs"

View File

@ -42,6 +42,7 @@
"clean-webpack-plugin": "^3.0.0", "clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3", "copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0", "css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^2.0.0", "dotenv-webpack": "^2.0.0",
"eslint": "^7.9.0", "eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0", "eslint-config-prettier": "^6.12.0",
@ -51,10 +52,12 @@
"html-webpack-plugin": "^4.3.0", "html-webpack-plugin": "^4.3.0",
"jest": "^26.4.2", "jest": "^26.4.2",
"jest-canvas-mock": "^2.2.0", "jest-canvas-mock": "^2.2.0",
"jquery": "^3.5.1",
"mini-css-extract-plugin": "^0.9.0", "mini-css-extract-plugin": "^0.9.0",
"monaco-editor-webpack-plugin": "^1.9.0", "monaco-editor-webpack-plugin": "^1.9.0",
"node-fetch": "^2.6.0", "node-fetch": "^2.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.3", "optimize-css-assets-webpack-plugin": "^5.0.3",
"pnp-webpack-plugin": "^1.6.4",
"prettier": "^2.0.5", "prettier": "^2.0.5",
"terser-webpack-plugin": "^2.3.7", "terser-webpack-plugin": "^2.3.7",
"ts-jest": "^26.4.0", "ts-jest": "^26.4.0",

View File

@ -7,10 +7,8 @@ import { Cursor } from "../../block/cursor/Cursor";
import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor"; import { ArrayBufferCursor } from "../../block/cursor/ArrayBufferCursor";
import { Endianness } from "../../block/Endianness"; import { Endianness } from "../../block/Endianness";
type PrsRsModule = typeof import("prs-rs");
class PrsWasm { class PrsWasm {
constructor(private module: PrsRsModule) {} constructor(private module: any) {}
public prs_compress_wasm(cursor: Cursor): Cursor { public prs_compress_wasm(cursor: Cursor): Cursor {
const bytes = new Uint8Array(cursor.array_buffer()); const bytes = new Uint8Array(cursor.array_buffer());

View File

@ -2,7 +2,7 @@
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "commonjs",
"target": "es6", "target": "es6",
"lib": ["es6", "dom", "dom.iterable"], "lib": ["esnext", "dom", "dom.iterable"],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
@ -12,7 +12,7 @@
"resolveJsonModule": true, "resolveJsonModule": true,
"moduleResolution": "node", "moduleResolution": "node",
"noEmit": true, "noEmit": true,
"experimentalDecorators": true, "experimentalDecorators": true
"typeRoots" : ["./node_modules/@types", "./typedefs"] },
} "include": ["typedefs"]
} }

View File

@ -15,8 +15,6 @@
}, },
"include": [ "include": [
"src", "src",
"typedefs", "typedefs"
// Adding WebGPU types via "typeRoots" doesn't work for an unknown reason.
"node_modules/@webgpu/types/dist/index.d.ts"
] ]
} }

View File

@ -2,6 +2,7 @@ const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin");
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin"); const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const { ProvidePlugin } = require("webpack"); const { ProvidePlugin } = require("webpack");
const PnpWebpackPlugin = require(`pnp-webpack-plugin`);
module.exports = { module.exports = {
entry: "./src/index.ts", entry: "./src/index.ts",
@ -10,6 +11,14 @@ module.exports = {
}, },
resolve: { resolve: {
extensions: [".js", ".ts"], extensions: [".js", ".ts"],
plugins: [
PnpWebpackPlugin,
],
},
resolveLoader: {
plugins: [
PnpWebpackPlugin.moduleLoader(module),
],
}, },
module: { module: {
rules: [ rules: [

19844
yarn.lock

File diff suppressed because it is too large Load Diff