Browse Source

TINY-3775: Switch to yarn

pull/118/head
Simon Fjeldså 6 years ago
parent
commit
38c7281b02
  1. 1
      .gitignore
  2. 4
      README.md
  3. 13299
      package-lock.json
  4. 4
      package.json
  5. 9134
      yarn.lock

1
.gitignore

@ -1,7 +1,6 @@
node_modules node_modules
lib lib
.DS_Store .DS_Store
yarn.lock
storybook-static storybook-static
.rpt2_cache .rpt2_cache
tinymce-tinymce-vue-*.tgz tinymce-tinymce-vue-*.tgz

4
README.md

@ -170,6 +170,10 @@ You can also define what cloud channel you want to use, for more info on the dif
To opt out of using TinyMCE cloud you have to make TinyMCE globally available yourself. This can be done either by hosting the `tinymce.min.js` file by youself and adding a script tag to you HTML or, if you are using a module loader, installing TinyMCE with npm. For info on how to get TinyMCE working with module loaders check out [this page in the documentation](https://www.tinymce.com/docs/advanced/usage-with-module-loaders/). To opt out of using TinyMCE cloud you have to make TinyMCE globally available yourself. This can be done either by hosting the `tinymce.min.js` file by youself and adding a script tag to you HTML or, if you are using a module loader, installing TinyMCE with npm. For info on how to get TinyMCE working with module loaders check out [this page in the documentation](https://www.tinymce.com/docs/advanced/usage-with-module-loaders/).
### Development
This project uses [yarn](https://yarnpkg.com/en/) for development.
### Issues ### Issues
Have you found an issue with `tinymce-vue` or do you have a feature request? Open up an [issue](https://github.com/tinymce/tinymce-vue/issues) and let us know or submit a [pull request](https://github.com/tinymce/tinymce-vue/pulls). *Note: for issues related to TinyMCE please visit the [TinyMCE repository](https://github.com/tinymce/tinymce).* Have you found an issue with `tinymce-vue` or do you have a feature request? Open up an [issue](https://github.com/tinymce/tinymce-vue/issues) and let us know or submit a [pull request](https://github.com/tinymce/tinymce-vue/pulls). *Note: for issues related to TinyMCE please visit the [TinyMCE repository](https://github.com/tinymce/tinymce).*

13299
package-lock.json
File diff suppressed because it is too large
View File

4
package.json

@ -13,8 +13,8 @@
"test-manual": "bedrock -f src/test/ts/**/*Test.ts", "test-manual": "bedrock -f src/test/ts/**/*Test.ts",
"clean": "rimraf lib", "clean": "rimraf lib",
"lint": "tslint src/**/*.ts", "lint": "tslint src/**/*.ts",
"build": "npm run clean && npm run lint && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json && node rollup.build.js",
"prepare": "npm run build",
"build": "yarn run clean && yarn run lint && tsc -p ./tsconfig.es2015.json && tsc -p ./tsconfig.cjs.json && node rollup.build.js",
"prepare": "yarn run build",
"storybook": "start-storybook -p 9001 -c .storybook" "storybook": "start-storybook -p 9001 -c .storybook"
}, },
"keywords": [ "keywords": [

9134
yarn.lock
File diff suppressed because it is too large
View File

Loading…
Cancel
Save