Skip to content

Commit 8971d70

Browse files
committed
feat(tutorial): create "new tutorial v1"
- HTML Tutorial is all information and videos for onboarding and feature presentations, - The launcher is html iframe to launch the integration user experience within WorkAdventure. This application will be set in our back office administration and available to WorkAdventure customers.
1 parent f7ebbc0 commit 8971d70

31 files changed

+8834
-5983
lines changed

.eslintignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
dist/
2-
jest.config.js
2+
jest.config.js
3+
tailwind.config.js
4+
tailwind.config.cjs
5+
postcss.config.js

.eslintrc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
{
2-
"extends": "@rpidanny/eslint-config-typescript"
2+
"extends": "@rpidanny/eslint-config-typescript",
3+
"rules": {
4+
"no-unused-vars": "off",
5+
"simple-import-sort/imports": "off",
6+
"arrow-parens": "off",
7+
"camelcase": "off",
8+
"no-throw-literal": "error"
9+
}
310
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Features
2+
3+
* **tutorialv1:** create "new tutorial v1" ([6cf1e80](https://github.com/workadventure/scripting-api-extra/commit/6cf1e8053da44f2b8229fa6938c8c2da48ac74c8))
4+
15
## [1.3.3](https://github.com/workadventure/scripting-api-extra/compare/v1.3.2...v1.3.3) (2022-07-06)
26

37

package-lock.json

Lines changed: 8433 additions & 5961 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workadventure/scripting-api-extra",
3-
"version": "1.3.3",
3+
"version": "1.4.0",
44
"description": "A set of utility functions / features to improve WorkAdventure maps",
55
"main": "dist/index.js",
66
"types": "dist/index.d.js",
@@ -47,20 +47,23 @@
4747
]
4848
},
4949
"devDependencies": {
50+
"@16bits/nes.css": "^2.3.2",
5051
"@commitlint/cli": "^13.1.0",
5152
"@commitlint/config-conventional": "^13.1.0",
5253
"@rpidanny/eslint-config-typescript": "^1.0.0",
5354
"@semantic-release/changelog": "^5.0.1",
5455
"@semantic-release/commit-analyzer": "^8.0.1",
5556
"@semantic-release/git": "^9.0.0",
5657
"@semantic-release/npm": "^7.1.0",
58+
"@tailwindcss/forms": "^0.5.3",
5759
"@tsconfig/svelte": "^2.0.1",
5860
"@types/copy-webpack-plugin": "^8.0.1",
5961
"@types/jest": "^27.0.1",
6062
"@types/mini-css-extract-plugin": "^2.2.0",
6163
"@types/mustache": "^4.1.2",
6264
"@types/webpack-dev-server": "^4.1.0",
6365
"@workadventure/iframe-api-typings": "^1.7.2",
66+
"autoprefixer": "^10.4.8",
6467
"copy-webpack-plugin": "^9.0.1",
6568
"cross-env": "^7.0.3",
6669
"css-loader": "^5.2.4",
@@ -73,6 +76,7 @@
7376
"mini-css-extract-plugin": "^2.2.2",
7477
"node-polyfill-webpack-plugin": "^1.1.2",
7578
"npm-run-all": "^4.1.5",
79+
"postcss": "^8.4.16",
7680
"prettier": "^2.0.5",
7781
"sass": "^1.32.12",
7882
"sass-loader": "^12.1.0",
@@ -81,6 +85,7 @@
8185
"svelte-check": "^2.1.0",
8286
"svelte-loader": "^3.1.1",
8387
"svelte-preprocess": "^4.7.3",
88+
"tailwindcss": "^3.1.8",
8489
"ts-jest": "^26.1.4",
8590
"ts-loader": "^9.2.5",
8691
"ts-node": "^10.1.0",
@@ -99,10 +104,12 @@
99104
},
100105
"unpkg": "dist/bundle.js",
101106
"dependencies": {
102-
"@fontsource/press-start-2p": "^4.5.0",
107+
"@fontsource/press-start-2p": "^4.5.10",
108+
"@workadventure-style/sweetsky": "^1.0.2",
103109
"@workadventure/tiled-map-type-guard": "^2.0.4",
104110
"mustache": "^4.2.0",
105111
"nes.css": "^2.3.0",
106-
"play-dtmf": "^0.1.1"
112+
"play-dtmf": "^0.1.1",
113+
"postcss-loader": "^7.0.1"
107114
}
108115
}

postcss.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const postcssConfig = require("@workadventure-style/sweetsky/postcss.config");
2+
module.exports = postcssConfig;
2.98 MB
Loading
1.86 MB
Loading
2.45 MB
Loading
2.98 MB
Loading

0 commit comments

Comments
 (0)